diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-01 23:37:12 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2004-11-01 23:37:12 +0000 |
commit | efeab39f4c367ce84eaa7758a9a315c64ba25e44 (patch) | |
tree | d3f2b06aa222514398342c5e74ec0531bd8af459 /source/lib/system.c | |
parent | 4bcf595f93ff2584e5c0d9f1b57c8ad496a9d612 (diff) | |
download | samba-efeab39f4c367ce84eaa7758a9a315c64ba25e44.tar.gz samba-efeab39f4c367ce84eaa7758a9a315c64ba25e44.tar.xz samba-efeab39f4c367ce84eaa7758a9a315c64ba25e44.zip |
r3445: made the gtk tooks use minimal includes. This approximately halves the
total include lines in compiling C files in Samba (the .gch file is
now 5M instead of 12M)
This also gets rid of the silly gtk compile warning for non-gtk code
Diffstat (limited to 'source/lib/system.c')
-rw-r--r-- | source/lib/system.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source/lib/system.c b/source/lib/system.c index 2baa412622e..906219bd91d 100644 --- a/source/lib/system.c +++ b/source/lib/system.c @@ -21,6 +21,7 @@ #include "includes.h" #include "system/network.h" +#include "system/wait.h" /* The idea is that this file will eventually have wrappers around all @@ -555,3 +556,4 @@ struct ipv4_addr sys_inet_makeaddr(int net, int host) in2.s_addr = in.s_addr; return in2; } + |