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