comparison lib-src/hexl.c @ 8026:cd7741bac302

Don't declare exit or perror.
author Richard M. Stallman <rms@gnu.org>
date Thu, 23 Jun 1994 19:27:56 +0000
parents 6d1d2e86fb37
children dd3b83e4ceb0
comparison
equal deleted inserted replaced
8025:f25cb844c3dd 8026:cd7741bac302
9 9
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
15 #ifndef MSDOS
16 /* Defined volatile by std.h in MsDos. */
17 extern void exit (), perror ();
18 #endif
19 14
20 int base = DEFAULT_BASE, un_flag = FALSE, iso_flag = FALSE, endian = 1; 15 int base = DEFAULT_BASE, un_flag = FALSE, iso_flag = FALSE, endian = 1;
21 int group_by = DEFAULT_GROUPING; 16 int group_by = DEFAULT_GROUPING;
22 char *progname; 17 char *progname;
23 18