summaryrefslogtreecommitdiff
path: root/textproc/unroff/patches/patch-b
diff options
context:
space:
mode:
Diffstat (limited to 'textproc/unroff/patches/patch-b')
-rw-r--r--textproc/unroff/patches/patch-b15
1 files changed, 15 insertions, 0 deletions
diff --git a/textproc/unroff/patches/patch-b b/textproc/unroff/patches/patch-b
new file mode 100644
index 00000000000..d846348ec27
--- /dev/null
+++ b/textproc/unroff/patches/patch-b
@@ -0,0 +1,15 @@
+diff -cr unroff-1.0.orig/src/error.c unroff-1.0/src/error.c
+*** unroff-1.0.orig/src/error.c Fri Jun 2 15:16:00 1995
+--- unroff-1.0/src/error.c Mon Feb 12 18:53:17 1996
+***************
+*** 39,45 ****
+--- 39,47 ----
+
+ static char *strerr(void) {
+ extern int sys_nerr;
++ #ifndef BSD
+ extern char *sys_errlist[];
++ #endif
+
+ return errno > 0 && errno < sys_nerr ?
+ sys_errlist[errno] : "unknown error";