From: Richard M. Stallman Date: Fri, 29 Apr 1994 19:35:46 +0000 (+0000) Subject: [MSDOS]: Don't define proto type for exit. X-Git-Tag: emacs-19.34~8657 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d1a880cd30020a8f2b310c09bee51baed9eda985;p=emacs.git [MSDOS]: Don't define proto type for exit. --- 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;