diff options
author | 1998-11-16 06:04:51 +0000 | |
---|---|---|
committer | 1998-11-16 06:04:51 +0000 | |
commit | 1cbc5424f18700a921689437945926065cc6a720 (patch) | |
tree | dcce38f191e56ac7347777f98a2396b2bcf91a77 | |
parent | SPIs are kept in network byte order (diff) | |
download | wireguard-openbsd-1cbc5424f18700a921689437945926065cc6a720.tar.xz wireguard-openbsd-1cbc5424f18700a921689437945926065cc6a720.zip |
fix _USE_WRITE
-rw-r--r-- | lib/libm/src/k_standard.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libm/src/k_standard.c b/lib/libm/src/k_standard.c index 3f6fad841b5..0515c5381f2 100644 --- a/lib/libm/src/k_standard.c +++ b/lib/libm/src/k_standard.c @@ -17,14 +17,13 @@ static char rcsid[] = "$NetBSD: k_standard.c,v 1.6 1995/05/10 20:46:35 jtc Exp $ #include "math.h" #include "math_private.h" #include <errno.h> +#include <stdio.h> /* fputs(), stderr */ #ifndef _USE_WRITE -#include <stdio.h> /* fputs(), stderr */ #define WRITE2(u,v) fputs(u, stderr) #else /* !defined(_USE_WRITE) */ #include <unistd.h> /* write */ #define WRITE2(u,v) write(2, u, v) -#undef fflush #endif /* !defined(_USE_WRITE) */ #ifdef __STDC__ |