mirror of
https://github.com/postgres/postgres.git
synced 2026-04-22 14:47:29 -04:00
8 lines
290 B
C
8 lines
290 B
C
/* 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/port/strdup.c.
|
|
*/
|
|
|
|
extern char *strdup(char const *);
|