use <> for include files
authorKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 21 Oct 1982 08:04:53 +0000 (00:04 -0800)
committerKirk McKusick <mckusick@ucbvax.Berkeley.EDU>
Thu, 21 Oct 1982 08:04:53 +0000 (00:04 -0800)
SCCS-vsn: usr.bin/grep/old.fgrep/old.fgrep.c 4.2

usr/src/usr.bin/grep/old.fgrep/old.fgrep.c

index 96b7857..20a4f2a 100644 (file)
@@ -1,4 +1,4 @@
-static char *sccsid = "@(#)old.fgrep.c 4.1 (Berkeley) %G%";
+static char *sccsid = "@(#)old.fgrep.c 4.2 (Berkeley) %G%";
 /*
  * fgrep -- print all lines containing any of a set of keywords
  *
 /*
  * fgrep -- print all lines containing any of a set of keywords
  *
@@ -8,8 +8,8 @@ static char *sccsid = "@(#)old.fgrep.c  4.1 (Berkeley) %G%";
  *             2 - some error
  */
 
  *             2 - some error
  */
 
-#include "stdio.h"
-# include "ctype.h"
+#include <stdio.h>
+#include <ctype.h>
 
 #define        MAXSIZ 6000
 #define QSIZE 400
 
 #define        MAXSIZ 6000
 #define QSIZE 400