diff options
| author | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
|---|---|---|
| committer | Andreas Schwab | 1998-04-14 12:25:56 +0000 |
| commit | dfcf069d565c347abf3cb7cec80e6ed8432037ba (patch) | |
| tree | cd9620f10084ffa69d7d6ae26284ffd69d4c07a5 /src/xrdb.c | |
| parent | 0f94f94657ad7a6a68e64c612285a5e06152def2 (diff) | |
| download | emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.tar.gz emacs-dfcf069d565c347abf3cb7cec80e6ed8432037ba.zip | |
Fix -Wimplicit warnings.
Diffstat (limited to 'src/xrdb.c')
| -rw-r--r-- | src/xrdb.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/xrdb.c b/src/xrdb.c index 72067ed84aa..0ab7992e5c2 100644 --- a/src/xrdb.c +++ b/src/xrdb.c | |||
| @@ -24,6 +24,10 @@ Boston, MA 02111-1307, USA. */ | |||
| 24 | #include <config.h> | 24 | #include <config.h> |
| 25 | #endif | 25 | #endif |
| 26 | 26 | ||
| 27 | #ifdef HAVE_UNISTD_H | ||
| 28 | #include <unistd.h> | ||
| 29 | #endif | ||
| 30 | |||
| 27 | #include <paths.h> | 31 | #include <paths.h> |
| 28 | 32 | ||
| 29 | #include <stdio.h> | 33 | #include <stdio.h> |
| @@ -84,6 +88,7 @@ extern char *get_system_name (); | |||
| 84 | #define malloc xmalloc | 88 | #define malloc xmalloc |
| 85 | #define realloc xrealloc | 89 | #define realloc xrealloc |
| 86 | #define free xfree | 90 | #define free xfree |
| 91 | extern long *xmalloc (), *xrealloc (); | ||
| 87 | #endif | 92 | #endif |
| 88 | 93 | ||
| 89 | char *x_get_string_resource (); | 94 | char *x_get_string_resource (); |