mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
a14dc49c57
A shareware program for typesetting music PR: ports/45812 Submitted by: Daniel O'Connor <doconnor@gsoft.com.au>
23 lines
590 B
Plaintext
23 lines
590 B
Plaintext
--- 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);
|
|
}
|
|
}
|