]> granicus.if.org Git - postgresql/blob - src/include/strdup.h
Add fseeko/ftello prototypes for BSD/OS only to c.h.
[postgresql] / src / include / strdup.h
1 /* This is the prototype for the strdup() function which is distributed
2    with Postgres.  That strdup() is only needed on those systems that
3    don't already have strdup() in their system libraries.
4
5    The Postgres strdup() is in src/utils/strdup.c.
6 */
7
8 extern char *strdup(char const *);