diff options
Diffstat (limited to 'print/mup/files/patch-aa')
-rw-r--r-- | print/mup/files/patch-aa | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/print/mup/files/patch-aa b/print/mup/files/patch-aa new file mode 100644 index 000000000000..e95febbaefd8 --- /dev/null +++ b/print/mup/files/patch-aa @@ -0,0 +1,22 @@ +--- mupdisp/mupdisp.c.orig Wed Nov 27 20:49:30 2002 ++++ mupdisp/mupdisp.c Wed Nov 27 23:03:09 2002 +@@ -45,6 +45,10 @@ + * chmod 4755 mupdisp + */ + ++#include <stdio.h> ++#include <stdlib.h> ++#include <unistd.h> ++#include <sys/signal.h> + + #include "mupdisp.h" + #ifdef __WATCOMC__ +@@ -112,7 +116,7 @@ + /* arrange to clean up temp files. Note that the user interface + * will probably have its own cleanup */ + for (n = 0; n < NSIG; n++) { +- if (n != SIGKILL && n != SIGCLD && n != SIGWINCH) { ++ if (n != SIGKILL && n != SIGCHLD && n != SIGWINCH) { + signal(n, generalcleanup); + } + } |