diff options
author | 1997-07-25 17:28:36 +0000 | |
---|---|---|
committer | 1997-07-25 17:28:36 +0000 | |
commit | 69c2d210cf40dc6a2400a1e12b7049d2737340d5 (patch) | |
tree | 4097567c464357f447a1318427d1a78f8d5a1eaf | |
parent | correct return value on apmcall failure (diff) | |
download | wireguard-openbsd-69c2d210cf40dc6a2400a1e12b7049d2737340d5.tar.xz wireguard-openbsd-69c2d210cf40dc6a2400a1e12b7049d2737340d5.zip |
userland bye-bye
(arch/machine/libsa have to have machine link or smth)
-rw-r--r-- | sys/lib/libsa/printf.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libsa/printf.c b/sys/lib/libsa/printf.c index b20bcdeee4b..ad9f454f385 100644 --- a/sys/lib/libsa/printf.c +++ b/sys/lib/libsa/printf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: printf.c,v 1.9 1997/02/06 15:51:13 mickey Exp $ */ +/* $OpenBSD: printf.c,v 1.10 1997/07/25 17:28:36 mickey Exp $ */ /* $NetBSD: printf.c,v 1.10 1996/11/30 04:19:21 gwr Exp $ */ /*- @@ -62,9 +62,9 @@ #include <sys/cdefs.h> #include <sys/types.h> #ifdef __STDC__ -#include <stdarg.h> +#include <machine/stdarg.h> #else -#include <varargs.h> +#include <machine/varargs.h> #endif #include "stand.h" |