diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-11-01 23:37:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:05:12 -0500 |
commit | f20f1f994ac375ab96cc8a38075b99aa20041b3f (patch) | |
tree | 1f42756291e0246863248d9203508b9057cf7d7c /source4/build | |
parent | 75b2790da896dee22e638bcc760d26c5064a9b3c (diff) | |
download | samba-f20f1f994ac375ab96cc8a38075b99aa20041b3f.tar.gz samba-f20f1f994ac375ab96cc8a38075b99aa20041b3f.tar.bz2 samba-f20f1f994ac375ab96cc8a38075b99aa20041b3f.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
(This used to be commit 8ebd20cf551c8c1fad98ec723d91873fa202b85a)
Diffstat (limited to 'source4/build')
-rw-r--r-- | source4/build/tests/fcntl_lock.c | 9 | ||||
-rw-r--r-- | source4/build/tests/fcntl_lock64.c | 9 |
2 files changed, 0 insertions, 18 deletions
diff --git a/source4/build/tests/fcntl_lock.c b/source4/build/tests/fcntl_lock.c index 3dc12a3897..089c3c8424 100644 --- a/source4/build/tests/fcntl_lock.c +++ b/source4/build/tests/fcntl_lock.c @@ -22,15 +22,6 @@ #include <errno.h> -static int sys_waitpid(pid_t pid,int *status,int options) -{ -#ifdef HAVE_WAITPID - return waitpid(pid,status,options); -#else /* USE_WAITPID */ - return wait4(pid, status, options, NULL); -#endif /* USE_WAITPID */ -} - #define DATA "conftest.fcntl" #ifndef SEEK_SET diff --git a/source4/build/tests/fcntl_lock64.c b/source4/build/tests/fcntl_lock64.c index e5ecd88fd0..913580cd24 100644 --- a/source4/build/tests/fcntl_lock64.c +++ b/source4/build/tests/fcntl_lock64.c @@ -18,15 +18,6 @@ #include <errno.h> -static int sys_waitpid(pid_t pid,int *status,int options) -{ -#ifdef HAVE_WAITPID - return waitpid(pid,status,options); -#else /* USE_WAITPID */ - return wait4(pid, status, options, NULL); -#endif /* USE_WAITPID */ -} - #define DATA "conftest.fcntl64" /* lock a byte range in a open file */ |