/* Check for interrupts */
#ifdef THINK_C
+/* This is for THINK C 4.0.
+ For 3.0, you may have to remove the signal stuff. */
+#include <MacHeaders>
#define macintosh
#endif
#ifdef macintosh
-#ifdef THINK_C
-/* This is for THINK C 4.0.
- For 3.0, you may have to remove the signal stuff. */
-#include <MacHeaders>
-#else
-/* This is for MPW 3.1 */
-/* XXX Untested */
+#ifdef applec /* MPW */
#include <OSEvents.h>
#include <SysEqu.h>
#endif
static int interrupted;
static SIGTYPE
-intcatcher(ig)
+intcatcher(sig)
int sig;
{
interrupted = 1;
{
register EvQElPtr q;
- /* This is like THINK C 4.0's <console.h> */
- /* q = (EvQElPtr) EventQueue.qHead; */
q = (EvQElPtr) GetEvQHdr()->qHead;
for (; q; q = (EvQElPtr)q->qLink) {