summary refs log tree commit diff
path: root/src/portab/strdup.c
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2014-03-17 00:17:02 +0100
committerAlexander Barton <alex@barton.de>2014-03-17 00:17:02 +0100
commit259c314d142abd6f9295047c116235cfdd119563 (patch)
tree660548fba4c2523699efcce105850a928b08411b /src/portab/strdup.c
parent51396f8f1c10506b558ce98aafb80aff4b2a95bd (diff)
downloadngircd-259c314d142abd6f9295047c116235cfdd119563.tar.gz
ngircd-259c314d142abd6f9295047c116235cfdd119563.zip
Remove imp.h and exp.h header files
These include files don't have a function any more, remove them.
Diffstat (limited to 'src/portab/strdup.c')
-rw-r--r--src/portab/strdup.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/portab/strdup.c b/src/portab/strdup.c
index 795af726..adb19e7a 100644
--- a/src/portab/strdup.c
+++ b/src/portab/strdup.c
@@ -11,13 +11,10 @@
 
 #ifndef HAVE_STRDUP
 
-#include "imp.h"
 #include <string.h>
 #include <stdlib.h>
 #include <sys/types.h>
 
-#include "exp.h"
-
 GLOBAL char *
 strdup(const char *s)
 {