diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-04-29 19:35:46 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-04-29 19:35:46 +0000 |
commit | e0137dc18d488853a5d907c53d289e1b824b018b (patch) | |
tree | 52a0062e85100fb19f2dff5d4d48b3e64898b5fe | |
parent | 2df38417fead6fa6122ed9e4cb50a6ef6cbe27f5 (diff) | |
download | emacs-e0137dc18d488853a5d907c53d289e1b824b018b.tar.gz |
[MSDOS]: Don't define proto type for exit.
-rw-r--r-- | lib-src/hexl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib-src/hexl.c b/lib-src/hexl.c index 20504211b55..c183af7add4 100644 --- a/lib-src/hexl.c +++ b/lib-src/hexl.c @@ -12,7 +12,10 @@ #define TRUE (1) #define FALSE (0) +#ifndef MSDOS +/* Defined volatile by std.h in MsDos. */ extern void exit (), perror (); +#endif int base = DEFAULT_BASE, un_flag = FALSE, iso_flag = FALSE, endian = 1; int group_by = DEFAULT_GROUPING; |