diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-07 05:59:31 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-07 05:59:31 +0000 |
commit | c3b0886d6e37324f0fe6ef4ef3fd60f913a162d4 (patch) | |
tree | 6772e08432f4c3ea03ee63a5833bc3f27931dcc6 /sys/lib/libsa/memcmp.c | |
parent | d92078d0cc0a79b89668b2884f62efbb781c33b9 (diff) |
#include "stand.h" not <stand.h>
Diffstat (limited to 'sys/lib/libsa/memcmp.c')
-rw-r--r-- | sys/lib/libsa/memcmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/memcmp.c b/sys/lib/libsa/memcmp.c index 623a9cbc465..41b6dae579e 100644 --- a/sys/lib/libsa/memcmp.c +++ b/sys/lib/libsa/memcmp.c @@ -35,10 +35,10 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: memcmp.c,v 1.3 1996/10/29 07:55:46 mickey Exp $"; +static char *rcsid = "$OpenBSD: memcmp.c,v 1.4 1997/04/07 05:59:30 millert Exp $"; #endif /* LIBC_SCCS and not lint */ -#include <stand.h> +#include "stand.h" /* * Compare memory regions. |