Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
summaryrefslogtreecommitdiff
blob: fd91939b03f8dc964f555e0f5df0020ec7c11562 (plain)
1
2
3
4
5
6
7
8
/* 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 *);