diff options
-rw-r--r-- | usr.bin/window/lcmd1.c | 3 | ||||
-rw-r--r-- | usr.bin/window/main.c | 3 | ||||
-rw-r--r-- | usr.bin/window/string.c | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/usr.bin/window/lcmd1.c b/usr.bin/window/lcmd1.c index ff96cac..cafe72c 100644 --- a/usr.bin/window/lcmd1.c +++ b/usr.bin/window/lcmd1.c @@ -39,7 +39,8 @@ static char sccsid[] = "@(#)lcmd1.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ #include "defs.h" -#include "string.h" +#include <string.h> /* System string definitions. */ +#include "string.h" /* Local string definitions. */ #include "value.h" #include "lcmd.h" #include "var.h" diff --git a/usr.bin/window/main.c b/usr.bin/window/main.c index 3613ca1..fb80ba3 100644 --- a/usr.bin/window/main.c +++ b/usr.bin/window/main.c @@ -48,7 +48,8 @@ static char sccsid[] = "@(#)main.c 8.2 (Berkeley) 4/2/94"; #include <paths.h> #include <locale.h> #include <stdio.h> -#include "string.h" +#include <string.h> /* System string definitions. */ +#include "string.h" /* Local string definitions. */ #include "char.h" #include "local.h" diff --git a/usr.bin/window/string.c b/usr.bin/window/string.c index a01f04f..9d1c145 100644 --- a/usr.bin/window/string.c +++ b/usr.bin/window/string.c @@ -38,7 +38,8 @@ static char sccsid[] = "@(#)string.c 8.1 (Berkeley) 6/6/93"; #endif /* not lint */ -#include "string.h" +#include <string.h> /* System string definitions. */ +#include "string.h" /* Local string definitions. */ char *malloc(); |