comparison lib-src/hexl.c @ 7196:6d1d2e86fb37

[MSDOS]: Don't define proto type for exit.
author Richard M. Stallman <rms@gnu.org>
date Fri, 29 Apr 1994 19:35:46 +0000
parents 44e193cc8f49
children cd7741bac302
comparison
equal deleted inserted replaced
7195:73d9c538cce2 7196:6d1d2e86fb37
10 #undef TRUE 10 #undef TRUE
11 #undef FALSE 11 #undef FALSE
12 #define TRUE (1) 12 #define TRUE (1)
13 #define FALSE (0) 13 #define FALSE (0)
14 14
15 #ifndef MSDOS
16 /* Defined volatile by std.h in MsDos. */
15 extern void exit (), perror (); 17 extern void exit (), perror ();
18 #endif
16 19
17 int base = DEFAULT_BASE, un_flag = FALSE, iso_flag = FALSE, endian = 1; 20 int base = DEFAULT_BASE, un_flag = FALSE, iso_flag = FALSE, endian = 1;
18 int group_by = DEFAULT_GROUPING; 21 int group_by = DEFAULT_GROUPING;
19 char *progname; 22 char *progname;
20 23