aboutsummaryrefslogtreecommitdiff
path: root/print/dviselect/files/patch-ad
diff options
context:
space:
mode:
Diffstat (limited to 'print/dviselect/files/patch-ad')
-rw-r--r--print/dviselect/files/patch-ad36
1 files changed, 0 insertions, 36 deletions
diff --git a/print/dviselect/files/patch-ad b/print/dviselect/files/patch-ad
deleted file mode 100644
index a745d9172895..000000000000
--- a/print/dviselect/files/patch-ad
+++ /dev/null
@@ -1,36 +0,0 @@
-*** lib/seek.c~ Mon Nov 26 23:53:23 1990
---- lib/seek.c Thu Oct 6 14:28:14 1994
-***************
-*** 25,31 ****
- #include <sys/file.h>
- #include <sys/stat.h>
-
-! long lseek();
- char *getenv();
-
- int
---- 25,31 ----
- #include <sys/file.h>
- #include <sys/stat.h>
-
-! off_t lseek();
- char *getenv();
-
- int
-***************
-*** 33,39 ****
- int fd;
- {
-
-! return (lseek(fd, 0L, 1) >= 0 && !isatty(fd));
- }
-
- /*
---- 33,39 ----
- int fd;
- {
-
-! return (lseek(fd, (off_t) 0, 1) >= 0 && !isatty(fd));
- }
-
- /*