diff options
author | Martin Schwenke <martin@meltin.net> | 2014-09-22 18:28:53 +1000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2014-10-04 00:11:21 +0200 |
commit | db15cc5388efdb0803bd2f785f8b6eee7f46ecbf (patch) | |
tree | 40cbbb5759ccaefd0cac38fabdf84a2241c92d39 /lib/util/util.c | |
parent | 8dac190ee1bc0e7f6d17eeca097f027fcaf584ed (diff) | |
download | samba-db15cc5388efdb0803bd2f785f8b6eee7f46ecbf.tar.gz samba-db15cc5388efdb0803bd2f785f8b6eee7f46ecbf.tar.xz samba-db15cc5388efdb0803bd2f785f8b6eee7f46ecbf.zip |
lib/util: Clean up includes for util.c
Allows standalone compiles without external includes.h.
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'lib/util/util.c')
-rw-r--r-- | lib/util/util.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/util/util.c b/lib/util/util.c index 3ba7e4d61a..157a4aa9f2 100644 --- a/lib/util/util.c +++ b/lib/util/util.c @@ -22,12 +22,17 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#include "includes.h" +#include <talloc.h> +#include "replace.h" #include "system/network.h" #include "system/filesys.h" #include "system/locale.h" #include "system/shmem.h" #include "system/passwd.h" +#include "system/time.h" +#include "system/wait.h" +#include "debug.h" +#include "samba_util.h" #undef malloc #undef strcasecmp |