diff options
Diffstat (limited to 'src/portab/strdup.c')
| -rw-r--r-- | src/portab/strdup.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/portab/strdup.c b/src/portab/strdup.c index e7351570..7c0ee8fd 100644 --- a/src/portab/strdup.c +++ b/src/portab/strdup.c @@ -1,13 +1,16 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * - * strdup() implementation. Public domain. - * - * $Id: strdup.c,v 1.1 2005/04/16 09:20:53 fw Exp $ */ #include "portab.h" +/** + * @file + * strdup() implementation. Public domain. + */ + +#ifndef HAVE_STRDUP + #include "imp.h" #include <string.h> #include <stdlib.h> @@ -15,8 +18,6 @@ #include "exp.h" -#ifndef HAVE_STRDUP - GLOBAL char * strdup( const char *s ) { |