don't define BUFSIZ unless necessary
authorKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 5 Mar 1991 05:33:07 +0000 (21:33 -0800)
committerKeith Bostic <bostic@ucbvax.Berkeley.EDU>
Tue, 5 Mar 1991 05:33:07 +0000 (21:33 -0800)
SCCS-vsn: usr.sbin/lpr/common_source/printcap.c 5.7

usr/src/usr.sbin/lpr/common_source/printcap.c

index a8f7aaa..a1d259f 100644 (file)
@@ -6,18 +6,18 @@
  */
 
 #ifndef lint
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)printcap.c 5.6 (Berkeley) %G%";
+static char sccsid[] = "@(#)printcap.c 5.7 (Berkeley) %G%";
 #endif /* not lint */
 
 #endif /* not lint */
 
+#include <ctype.h>
+#include <stdio.h>
+#include "pathnames.h"
+
 #ifndef BUFSIZ
 #define        BUFSIZ  1024
 #endif
 #define MAXHOP 32      /* max number of tc= indirections */
 
 #ifndef BUFSIZ
 #define        BUFSIZ  1024
 #endif
 #define MAXHOP 32      /* max number of tc= indirections */
 
-#include <ctype.h>
-#include <stdio.h>
-#include "pathnames.h"
-
 /*
  * termcap - routines for dealing with the terminal capability data base
  *
 /*
  * termcap - routines for dealing with the terminal capability data base
  *