summaryrefslogtreecommitdiff
path: root/src/include/strdup.h
diff options
context:
space:
mode:
authorTom Lane2006-09-27 15:41:24 +0000
committerTom Lane2006-09-27 15:41:24 +0000
commit9ba40653129f0c538ac8d4f0488512a10819567f (patch)
tree96a998785f9c05ed624ce079698306d52ae5675e /src/include/strdup.h
parentde6ca63d7f28a40e2b0c84aea27bda7560670054 (diff)
Remove separate strdup.h header file; it's redundant with port.h.
Diffstat (limited to 'src/include/strdup.h')
-rw-r--r--src/include/strdup.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/include/strdup.h b/src/include/strdup.h
deleted file mode 100644
index 3b379360ba..0000000000
--- a/src/include/strdup.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* 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 *);