From 876753d5ce1be48f3218fb4875fac501f8adfd6c Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 16 May 2000 13:08:31 +0000 Subject: [PATCH] put SHUTUP_SPUTAUX in acconfig.h --- acconfig.h | 7 +++++++ config.h.in | 15 +++++++-------- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/acconfig.h b/acconfig.h index 4cdb733d61..b449dc5309 100644 --- a/acconfig.h +++ b/acconfig.h @@ -52,3 +52,10 @@ /* define if chroot() is available */ #undef HAVE_CHROOT + +/* Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */ +#undef SHUTUP_SPUTAUX +#ifdef SHUTUP_SPUTAUX +struct __sFILE; +extern __inline int __sputaux(int _c, struct __sFILE *_p); +#endif diff --git a/config.h.in b/config.h.in index 29af23d571..cdd056974e 100644 --- a/config.h.in +++ b/config.h.in @@ -60,6 +60,13 @@ /* define if chroot() is available */ #undef HAVE_CHROOT +/* Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */ +#undef SHUTUP_SPUTAUX +#ifdef SHUTUP_SPUTAUX +struct __sFILE; +extern __inline int __sputaux(int _c, struct __sFILE *_p); +#endif + /* Define if you have the header file. */ #undef HAVE_FCNTL_H @@ -89,11 +96,3 @@ /* Define if you have the socket library (-lsocket). */ #undef HAVE_LIBSOCKET - -/* Shut up warnings about sputaux in stdio.h on BSD/OS pre-4.1 */ -#undef SHUTUP_SPUTAUX -#ifdef SHUTUP_SPUTAUX -struct __sFILE; -extern __inline int __sputaux(int _c, struct __sFILE *_p); -#endif -