diff options
Diffstat (limited to 'src/include/config.h.in')
-rw-r--r-- | src/include/config.h.in | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/src/include/config.h.in b/src/include/config.h.in index 51f22a9a63d..4101d8d2114 100644 --- a/src/include/config.h.in +++ b/src/include/config.h.in @@ -8,7 +8,7 @@ * or in config.h afterwards. Of course, if you edit config.h, then your * changes will be overwritten the next time you run configure. * - * $Id: config.h.in,v 1.132 2000/08/26 21:53:40 tgl Exp $ + * $Id: config.h.in,v 1.133 2000/08/27 19:00:39 petere Exp $ */ #ifndef CONFIG_H @@ -300,12 +300,6 @@ /* Define as your compiler's spelling of "inline", or empty if no inline. */ #undef inline -/* Define signed as empty if your compiler doesn't grok "signed char" etc */ -#undef signed - -/* Define volatile as empty if your compiler doesn't grok volatile. */ -#undef volatile - /* Define if your cpp understands the ANSI stringizing operators in macros */ #undef HAVE_STRINGIZE @@ -588,18 +582,4 @@ extern void srandom(unsigned int seed); #include "os.h" -/* - * The following is used as the arg list for signal handlers. Any ports - * that take something other than an int argument should override this in - * the port-specific os.h file. Note that variable names are required - * because it is used in both the prototypes as well as the definitions. - * Note also the long name. We expect that this won't collide with - * other names causing compiler warnings. - */ - -#ifndef SIGNAL_ARGS -#define SIGNAL_ARGS int postgres_signal_arg -#endif - - #endif /* CONFIG_H */ |