You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
670 B
31 lines
670 B
|
25 years ago
|
--- hexer.c.orig Tue Apr 23 19:40:08 1996
|
||
|
24 years ago
|
+++ hexer.c Fri Apr 5 13:26:10 2002
|
||
|
|
@@ -67,10 +67,12 @@
|
||
|
25 years ago
|
|
||
|
|
extern int errno;
|
||
|
|
|
||
|
|
-#ifndef BSD
|
||
|
|
+#if !defined(BSD) && !defined(__linux__)
|
||
|
|
extern char *sys_errlist[];
|
||
|
|
#endif
|
||
|
24 years ago
|
+#if !defined(BSD)
|
||
|
25 years ago
|
extern int sys_nerr;
|
||
|
24 years ago
|
+#endif
|
||
|
|
extern mkstemp();
|
||
|
|
|
||
|
|
const struct buffer_s NO_BUFFER = { 0, 0, 0, 0, 0, 0 };
|
||
|
25 years ago
|
--- commands.c.orig Tue Apr 23 19:40:09 1996
|
||
|
24 years ago
|
+++ commands.c Fri Apr 5 13:28:08 2002
|
||
|
|
@@ -1246,8 +1246,10 @@
|
||
|
|
int cant_write_f = 0;
|
||
|
25 years ago
|
long k;
|
||
|
|
char *errormsg;
|
||
|
24 years ago
|
+#if !defined(BSD)
|
||
|
25 years ago
|
extern int sys_nerr;
|
||
|
|
-#ifndef BSD
|
||
|
24 years ago
|
+#endif
|
||
|
25 years ago
|
+#if !defined(BSD) && !defined(__linux__)
|
||
|
|
extern char *sys_errlist[];
|
||
|
|
#endif
|
||
|
|
extern int errno;
|