From 3643fb11092e28a9538ef32cedce8ff21ad86a28 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 2 Nov 2004 06:42:15 +0000 Subject: r3463: separated out some more headers (asn_1.h, messages.h, dlinklist.h and ioctl.h) (This used to be commit b97e395c814762024336c1cf4d7c25be8da5813a) --- source4/include/system/glob.h | 1 + source4/include/system/network.h | 3 +++ source4/include/system/wait.h | 8 ++++++++ 3 files changed, 12 insertions(+) (limited to 'source4/include/system') diff --git a/source4/include/system/glob.h b/source4/include/system/glob.h index fc56a18b9a..676030b799 100644 --- a/source4/include/system/glob.h +++ b/source4/include/system/glob.h @@ -24,3 +24,4 @@ #include #endif +#include diff --git a/source4/include/system/network.h b/source4/include/system/network.h index d380245865..dfecd59090 100644 --- a/source4/include/system/network.h +++ b/source4/include/system/network.h @@ -78,3 +78,6 @@ #define MAXHOSTNAMELEN 254 #endif +#ifndef HAVE_SOCKLEN_T_TYPE +typedef int socklen_t; +#endif diff --git a/source4/include/system/wait.h b/source4/include/system/wait.h index 29e5c6fe66..6af01986f9 100644 --- a/source4/include/system/wait.h +++ b/source4/include/system/wait.h @@ -23,3 +23,11 @@ #ifdef HAVE_SYS_WAIT_H #include #endif + +/* + * Define additional missing types + */ +#ifndef HAVE_SIG_ATOMIC_T_TYPE +typedef int sig_atomic_t; +#endif + -- cgit