diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-04-29 21:42:42 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-04-29 21:42:42 +0000 |
commit | 66cafba52fa592e70f9027c3a504e150d8573697 (patch) | |
tree | 588b53e9f3f8287dddf95a6e006005352d97c0c6 /usr.bin/sup | |
parent | 628c2951dfded4d4ff182e48960888ef3991b5c4 (diff) |
include string.h not strings.h
Diffstat (limited to 'usr.bin/sup')
-rw-r--r-- | usr.bin/sup/src/libc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/sup/src/libc.h b/usr.bin/sup/src/libc.h index 6b94ed8b318..6a0c2740926 100644 --- a/usr.bin/sup/src/libc.h +++ b/usr.bin/sup/src/libc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libc.h,v 1.3 1997/04/01 07:35:06 todd Exp $ */ +/* $OpenBSD: libc.h,v 1.4 2001/04/29 21:42:41 millert Exp $ */ /* * Copyright (c) 1991 Carnegie Mellon University @@ -61,9 +61,9 @@ #include <stdio.h> #endif /* FILE */ -#ifndef _STRINGS_H_ -#include <strings.h> -#endif /* _STRINGS_H_ */ +#ifndef _STRING_H_ +#include <string.h> +#endif /* _STRING_H_ */ #ifndef _TIME_H_ #include <time.h> |