]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/portab/strlcpy.c
Update copyright notices of recently changed files
[ngircd-alex.git] / src / portab / strlcpy.c
index ae2018bcf940a3c47a1cc265740c58fbff70dce8..1f86a93304fcec3d2246374d3fe2d7815fca638e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- * Copyright (c)2001-2005 Alexander Barton (alex@barton.de)
+ * Copyright (c)2001-2014 Alexander Barton (alex@barton.de) and Contributors.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
  * <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- */