diff options
Diffstat (limited to 'src/include/c.h')
-rw-r--r-- | src/include/c.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/include/c.h b/src/include/c.h index 84516a0f8fa..1fd1aa0421e 100644 --- a/src/include/c.h +++ b/src/include/c.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: c.h,v 1.59 1999/07/13 20:00:32 momjian Exp $ + * $Id: c.h,v 1.60 1999/07/17 04:12:09 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -46,6 +46,10 @@ on some platforms, and we only want our definitions used if stdlib.h doesn't have its own. The same goes for stddef and stdarg if present. */ + +#include "config.h" + + #include <stdlib.h> #ifdef STDC_HEADERS #include <stddef.h> @@ -104,12 +108,6 @@ typedef bool *BoolPtr; */ /* - * We used to define const, signed, volatile, and inline as empty - * if __STDC__ wasn't defined. Now we let configure test whether - * those keywords work; config.h defines them as empty if not. - */ - -/* * CppAsString * Convert the argument to a string, using the C preprocessor. * CppConcat |