ports/misc/alevt/files/patch-ab
Roger Hardiman 632f538558 Upgrade to version 1.5.0.
New features include 'save to disk' in both ascii and html
formats.
alevt-date is fixed too, so you cn set your system clock from teletext
1999-10-12 10:31:48 +00:00

19 lines
468 B
Text

*** 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)