diff options
author | Andreas Schwab <schwab@suse.de> | 1998-04-14 12:25:56 +0000 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 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.tar.bz2 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. */ #include <config.h> #endif +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif + #include <paths.h> #include <stdio.h> @@ -84,6 +88,7 @@ extern char *get_system_name (); #define malloc xmalloc #define realloc xrealloc #define free xfree +extern long *xmalloc (), *xrealloc (); #endif char *x_get_string_resource (); |