]> arthur.barton.de Git - ngircd.git/blobdiff - src/portab/strlcpy.c
Remove imp.h and exp.h header files
[ngircd.git] / src / portab / strlcpy.c
index ae2018bcf940a3c47a1cc265740c58fbff70dce8..a7f5e2f13486db785a28b4ec33f346c956fc5f6c 100644 (file)
  * <http://cvs.samba.org/cgi-bin/cvsweb/rsync/lib/compat.c>
  */
 
-#include "imp.h"
 #include <string.h>
 #include <sys/types.h>
 
-#include "exp.h"
-
-
 #ifndef HAVE_STRLCAT
 
 GLOBAL size_t
@@ -52,7 +48,6 @@ strlcat( char *dst, const char *src, size_t size )
 
 #endif
 
-
 #ifndef HAVE_STRLCPY
 
 GLOBAL size_t
@@ -74,5 +69,4 @@ strlcpy( char *dst, const char *src, size_t size )
 
 #endif
 
-
 /* -eof- */