summaryrefslogtreecommitdiff
path: root/sys/lib/libsa/stand.h
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 03:16:15 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 03:16:15 +0000
commite63dc855fe4ff1aa0029ebf9813134860a34ccdf (patch)
treec2aa960c67a99a878c8902943399029fa598683f /sys/lib/libsa/stand.h
parent71eb96ce8a9190e7ffeccbabd7a5ec4f3b4fc72f (diff)
Final __P removal plus some cosmetic fixups
Diffstat (limited to 'sys/lib/libsa/stand.h')
-rw-r--r--sys/lib/libsa/stand.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h
index bcef6c26974..e455a713206 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stand.h,v 1.37 2002/03/14 01:27:07 millert Exp $ */
+/* $OpenBSD: stand.h,v 1.38 2002/03/14 03:16:10 millert Exp $ */
/* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */
/*-
@@ -153,7 +153,7 @@ __dead void _rtt(void) __attribute__((noreturn));
#define bcmp(s1,s2,n) (memcmp((s2),(s1),(n)))
#define bcopy(s1,s2,n) ((void)memcpy((s2),(s1),(n)))
void *memcpy(void *, const void *, size_t);
-int memcmp(const void *, const void*, size_t);
+int memcmp(const void *, const void *, size_t);
char *strncpy(char *, const char *, size_t);
char *strcpy(char *, const char *);
int strncmp(const char *, const char *, size_t);