mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 23:20:30 -04:00
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
19 lines
468 B
Text
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)
|