=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/split/split.c,v retrieving revision 1.17 retrieving revision 1.18 diff -c -r1.17 -r1.18 *** src/usr.bin/split/split.c 2009/10/27 23:59:43 1.17 --- src/usr.bin/split/split.c 2015/01/16 06:40:12 1.18 *************** *** 1,4 **** ! /* $OpenBSD: split.c,v 1.17 2009/10/27 23:59:43 deraadt Exp $ */ /* $NetBSD: split.c,v 1.5 1995/08/31 22:22:05 jtc Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: split.c,v 1.18 2015/01/16 06:40:12 deraadt Exp $ */ /* $NetBSD: split.c,v 1.5 1995/08/31 22:22:05 jtc Exp $ */ /* *************** *** 30,36 **** * SUCH DAMAGE. */ ! #include #include #include --- 30,36 ---- * SUCH DAMAGE. */ ! #include /* MAXBSIZE */ #include #include *************** *** 51,57 **** int file_open; /* If a file open. */ int ifd = -1, ofd = -1; /* Input/output file descriptors. */ char bfr[MAXBSIZE]; /* I/O buffer. */ ! char fname[MAXPATHLEN]; /* File name prefix. */ regex_t rgx; int pflag; int sufflen = 2; /* File name suffix length. */ --- 51,57 ---- int file_open; /* If a file open. */ int ifd = -1, ofd = -1; /* Input/output file descriptors. */ char bfr[MAXBSIZE]; /* I/O buffer. */ ! char fname[PATH_MAX]; /* File name prefix. */ regex_t rgx; int pflag; int sufflen = 2; /* File name suffix length. */