diff options
author | Tom Lane | 1999-01-17 21:44:46 +0000 |
---|---|---|
committer | Tom Lane | 1999-01-17 21:44:46 +0000 |
commit | d1a391c332c4b410f705dc173bf45866caf2e4c8 (patch) | |
tree | f7992578402145c899b9d7981720e9e864546fca | |
parent | be94d8fb1e38503c1f44b38810fdae8493bdfb17 (diff) |
Reverse out yesterday's patch from Horak Daniel, since
it fails to compile on any machine without a <features.h> header.
If this header is actually necessary on Windows, perhaps an #if test
is in order.
-rw-r--r-- | src/backend/port/snprintf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/port/snprintf.c b/src/backend/port/snprintf.c index 2d6215decd5..b2646a6d581 100644 --- a/src/backend/port/snprintf.c +++ b/src/backend/port/snprintf.c @@ -36,7 +36,6 @@ #include "pathnames.h" #endif -#include <features.h> #include "postgres.h" #include "regex/cdefs.h" @@ -74,7 +73,7 @@ typedef unsigned long long ulong_long; * causing nast effects. **************************************************************/ -/*static char _id[] = "$Id: snprintf.c,v 1.17 1999/01/17 06:18:33 momjian Exp $";*/ +/*static char _id[] = "$Id: snprintf.c,v 1.18 1999/01/17 21:44:46 tgl Exp $";*/ static char *end; static int SnprfOverflow; |