Skip to content
Snippets Groups Projects
strdup.h 291 B
/* This is the prototype for the strdup() function which is distributed
   with Postgres.  That strdup() is only needed on those systems that
   don't already have strdup() in their system libraries.

   The Postgres strdup() is in src/utils/strdup.c.
*/

extern char *strdup(char const *);