diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-06-29 05:49:27 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-06-29 05:49:27 +0000 |
commit | e9c9d36e70adec3a17be27a98f00b704fda63332 (patch) | |
tree | 83c154d624f70b15eba6556b1d3cbeb5be7c424d /libexec | |
parent | 955c2ee3df82821fc6ff286899023cb6490a057a (diff) |
o We have uname(2)
o Include stdarg.h since we do varags stuff
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/telnetd/telnetd.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libexec/telnetd/telnetd.h b/libexec/telnetd/telnetd.h index c156a35c33c..8955fce4699 100644 --- a/libexec/telnetd/telnetd.h +++ b/libexec/telnetd/telnetd.h @@ -49,6 +49,8 @@ #define HAVE_FCNTL_H #define HAVE_SYS_IOCTL_H #define HAVE_UNISTD_H +#define HAVE_SYS_UTSNAME_H +#define HAVE_UNAME #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> @@ -165,6 +167,10 @@ #include <arpa/telnet.h> #endif +#ifdef HAVE_STDARG_H +#include <stdarg.h> +#endif + #include "ext.h" #ifdef SOCKS |