diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-08-29 23:18:56 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-08-29 23:18:56 +0000 |
commit | b6e8095b06435689b15219b140d8cd462f6adf22 (patch) | |
tree | fb091cc9ee9b95869b3ed26f1c40d46b6531ed4d /emulators/dlx | |
parent | 68193709e4d17ee571ecdb4f71e6f687e2368aa7 (diff) | |
download | ports-b6e8095b06435689b15219b140d8cd462f6adf22.tar.gz ports-b6e8095b06435689b15219b140d8cd462f6adf22.zip |
Notes
Diffstat (limited to 'emulators/dlx')
-rw-r--r-- | emulators/dlx/files/patch-ad | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/emulators/dlx/files/patch-ad b/emulators/dlx/files/patch-ad new file mode 100644 index 000000000000..f9c260cea292 --- /dev/null +++ b/emulators/dlx/files/patch-ad @@ -0,0 +1,35 @@ +--- dlxsim/tcl/panic.c.orig Fri Aug 29 18:38:56 2003 ++++ dlxsim/tcl/panic.c Fri Aug 29 18:41:19 2003 +@@ -19,7 +19,7 @@ + + #include <stdio.h> + #include <stdlib.h> +-#include <varargs.h> ++#include <stdarg.h> + + /* + *---------------------------------------------------------------------- +@@ -39,19 +39,18 @@ + + #ifndef lint + void +-panic(va_alist) +- va_dcl /* char *format, then any number of additional ++panic(char *format, ...) ++ /* char *format, then any number of additional + * values to be printed under the control of + * format. This is all just the same as you'd + * pass to printf. */ + { +- char *format; + va_list args; + +- va_start(args); +- format = va_arg(args, char *); ++ va_start(args, format); + (void) vfprintf(stderr, format, args); + (void) fflush(stderr); ++ va_end(args); + abort(); + } + #else |