diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-15 18:19:54 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-15 18:19:54 +0000 |
commit | de0519636e72969a9359cf27a32e00375235e343 (patch) | |
tree | 3670fa3ad7bf3bf88d6e1ab3add73f82987d555e /sys/lib/libsa/stand.h | |
parent | e018051dbb8764df0d8660f8e0e82fa3eaefb0c4 (diff) |
Kill #if __STDC__ used to do K&R vs. ANSI varargs/stdarg; just do things
the ANSI way.
Diffstat (limited to 'sys/lib/libsa/stand.h')
-rw-r--r-- | sys/lib/libsa/stand.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h index e455a713206..bd012095eea 100644 --- a/sys/lib/libsa/stand.h +++ b/sys/lib/libsa/stand.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stand.h,v 1.38 2002/03/14 03:16:10 millert Exp $ */ +/* $OpenBSD: stand.h,v 1.39 2002/03/15 18:19:52 millert Exp $ */ /* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */ /*- @@ -39,11 +39,7 @@ #include <sys/types.h> #include <sys/cdefs.h> #include <sys/stat.h> -#ifdef __STDC__ #include <machine/stdarg.h> -#else -#include <machine/varargs.h> -#endif #include "saioctl.h" #include "saerrno.h" |