diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2008-12-11 10:25:17 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2008-12-11 10:25:17 +0000 |
| commit | d9346f2186c51fbc7d3351d7e00d84e937c80925 (patch) | |
| tree | b6ca992c8cf15a4e84ab38f3da984e92a6884e37 /src/include/c.h | |
| parent | 21a743e886e08cc0a6813096fd39b32b2cf9ab00 (diff) | |
| download | postgresql-d9346f2186c51fbc7d3351d7e00d84e937c80925.tar.gz | |
The macros NULL_DEV and DEVNULL were both used to work around
platform-specific spellings of /dev/null. But one should be enough, so
settle on DEVNULL.
Diffstat (limited to 'src/include/c.h')
| -rw-r--r-- | src/include/c.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/include/c.h b/src/include/c.h index 16c30cb60a..7bcc6351f0 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/c.h,v 1.232 2008/12/11 09:17:07 petere Exp $ + * $PostgreSQL: pgsql/src/include/c.h,v 1.233 2008/12/11 10:25:17 petere Exp $ * *------------------------------------------------------------------------- */ @@ -769,9 +769,6 @@ typedef NameData *Name; #define PG_BINARY_W "w" #endif -/* These are for things that are one way on Unix and another on NT */ -#define NULL_DEV "/dev/null" - /* * Provide prototypes for routines not present in a particular machine's * standard C library. |
