summaryrefslogtreecommitdiff
path: root/misc/alevt/files/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'misc/alevt/files/patch-ab')
-rw-r--r--misc/alevt/files/patch-ab19
1 files changed, 0 insertions, 19 deletions
diff --git a/misc/alevt/files/patch-ab b/misc/alevt/files/patch-ab
deleted file mode 100644
index afcd06bafe68..000000000000
--- a/misc/alevt/files/patch-ab
+++ /dev/null
@@ -1,19 +0,0 @@
-*** exp-txt.c.orig Tue Oct 12 10:28:27 1999
---- exp-txt.c Tue Oct 12 10:31:59 1999
-*************** txt_option(struct export *e, int opt, ch
-*** 87,92 ****
---- 87,100 ----
- return 0;
- }
-
-+ /* stpcpy is only defined on Linux systems */
-+ /* create a local function for BSD Unix systems */
-+ char *stpcpy(char *dst, char *src)
-+ {
-+ while (*dst++ = *src++)
-+ ;
-+ return dst-1;
-+ }
-
- static void
- put_attr(struct export *e, struct fmt_char *new)