diff options
Diffstat (limited to 'src/portab')
| -rw-r--r-- | src/portab/Makefile.am | 4 | ||||
| -rw-r--r-- | src/portab/portab.h | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/src/portab/Makefile.am b/src/portab/Makefile.am index 7020462d..06c6bae4 100644 --- a/src/portab/Makefile.am +++ b/src/portab/Makefile.am @@ -9,14 +9,14 @@ # Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste # der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. # -# $Id: Makefile.am,v 1.7 2003/01/03 22:04:14 alex Exp $ +# $Id: Makefile.am,v 1.8 2005/04/16 09:23:01 fw Exp $ # AUTOMAKE_OPTIONS = ansi2knr noinst_LIBRARIES = libngportab.a -libngportab_a_SOURCES = strlcpy.c vsnprintf.c +libngportab_a_SOURCES = strlcpy.c strdup.c vsnprintf.c check_PROGRAMS = portabtest diff --git a/src/portab/portab.h b/src/portab/portab.h index 44e7c6c5..5f2ee3d0 100644 --- a/src/portab/portab.h +++ b/src/portab/portab.h @@ -8,7 +8,7 @@ * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. * - * $Id: portab.h,v 1.20 2005/04/09 18:27:16 alex Exp $ + * $Id: portab.h,v 1.21 2005/04/16 09:23:01 fw Exp $ * * Portability functions and declarations (header for libngbportab). */ @@ -147,6 +147,10 @@ extern size_t strlcat PARAMS(( char *dst, const char *src, size_t size )); extern size_t strlcpy PARAMS(( char *dst, const char *src, size_t size )); #endif +#ifndef HAVE_STRDUP +extern char * strdup PARAMS(( const char *s )); +#endif + #ifndef HAVE_VSNPRINTF #include <stdarg.h> extern int vsnprintf PARAMS(( char *str, size_t count, const char *fmt, va_list args )); |