diff options
Diffstat (limited to 'src/port/strdup.c')
-rw-r--r-- | src/port/strdup.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/port/strdup.c b/src/port/strdup.c index a4cb16d4af3..2854b660110 100644 --- a/src/port/strdup.c +++ b/src/port/strdup.c @@ -8,15 +8,16 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/port/strdup.c,v 1.6 2004/12/31 22:03:53 pgsql Exp $ + * $PostgreSQL: pgsql/src/port/strdup.c,v 1.7 2005/07/28 04:03:14 tgl Exp $ * *------------------------------------------------------------------------- */ -#include <string.h> -#include <stdlib.h> +#include "c.h" + #include "strdup.h" + char * strdup(char const * string) { |