X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fportab%2Fstrlcpy.c;h=1f86a93304fcec3d2246374d3fe2d7815fca638e;hp=ae2018bcf940a3c47a1cc265740c58fbff70dce8;hb=a13bb78b1e7adf7c261ac427341c397ef9a6a1ed;hpb=03628dbeaf40a9de34b3eb6d5bf6dd34eed8248c diff --git a/src/portab/strlcpy.c b/src/portab/strlcpy.c index ae2018bc..1f86a933 100644 --- a/src/portab/strlcpy.c +++ b/src/portab/strlcpy.c @@ -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 @@ -22,13 +22,9 @@ * */ -#include "imp.h" #include #include -#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- */