diff options
Diffstat (limited to 'src/vmsgmalloc.c')
| -rw-r--r-- | src/vmsgmalloc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/vmsgmalloc.c b/src/vmsgmalloc.c index a3545f5eb01..93a3fd7f8bd 100644 --- a/src/vmsgmalloc.c +++ b/src/vmsgmalloc.c | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | /* The malloc headers and source files from the C library follow here. */ | 5 | /* The malloc headers and source files from the C library follow here. */ |
| 6 | 6 | ||
| 7 | /* Declarations for `malloc' and friends. | 7 | /* Declarations for `malloc' and friends. |
| 8 | Copyright 1990, 1991, 1992, 1993 Free Software Foundation, Inc. | 8 | Copyright 1990, 1991, 1992, 1993, 1999 Free Software Foundation, Inc. |
| 9 | Written May 1989 by Mike Haertel. | 9 | Written May 1989 by Mike Haertel. |
| 10 | 10 | ||
| 11 | This file is part of GNU Emacs. | 11 | This file is part of GNU Emacs. |
| @@ -57,6 +57,10 @@ extern "C" | |||
| 57 | #define NULL 0 | 57 | #define NULL 0 |
| 58 | #endif | 58 | #endif |
| 59 | 59 | ||
| 60 | #if defined (HAVE_CONFIG_H) || defined (emacs) | ||
| 61 | #include <config.h> | ||
| 62 | #endif | ||
| 63 | |||
| 60 | #ifdef __STDC__ | 64 | #ifdef __STDC__ |
| 61 | #include <stddef.h> | 65 | #include <stddef.h> |
| 62 | #else | 66 | #else |
| @@ -105,10 +109,6 @@ extern void __vms_free __P ((__ptr_t __ptr)); | |||
| 105 | 109 | ||
| 106 | #include <stdio.h> /* Harmless, gets __GNU_LIBRARY__ defined. */ | 110 | #include <stdio.h> /* Harmless, gets __GNU_LIBRARY__ defined. */ |
| 107 | 111 | ||
| 108 | #if defined(HAVE_CONFIG_H) || defined(emacs) | ||
| 109 | #include <config.h> | ||
| 110 | #endif | ||
| 111 | |||
| 112 | #if defined(__GNU_LIBRARY__) || defined(STDC_HEADERS) || defined(USG) | 112 | #if defined(__GNU_LIBRARY__) || defined(STDC_HEADERS) || defined(USG) |
| 113 | #include <string.h> | 113 | #include <string.h> |
| 114 | #else | 114 | #else |