]> andersk Git - moira.git/commitdiff
add back in Kerberos changes:
authorjtkohl <jtkohl>
Thu, 11 May 1989 10:37:58 +0000 (10:37 +0000)
committerjtkohl <jtkohl>
Thu, 11 May 1989 10:37:58 +0000 (10:37 +0000)
#define ultrix, mips when appropriate
POSIX signal types

util/makedepend/main.c

index e7e5da4c62af07a5d2aa61c5ad3a762256c4823f..0213a17c730fda95ffe43ea537545d074cb6600a 100644 (file)
@@ -45,6 +45,12 @@ struct symtab        predefs[] = {
 #endif
 #ifdef VMS
        {"VMS", NULL},
+#endif
+#ifdef ultrix
+       {"ultrix", NULL},
+#endif
+#ifdef mips
+       {"mips", NULL},
 #endif
        {NULL, NULL}
 };
@@ -62,14 +68,13 @@ int width = 78;
 boolean        printed = FALSE;
 boolean        verbose = FALSE;
 boolean        show_where_not = FALSE;
-#if defined (mips) && defined (SYSTYPE_SYSV)
-void  catch();
-#else /* !(mips && SYSTYPE_SYSV) */
-#ifdef ultrix
-void  catch();
+
+#if defined(POSIX) || (defined(mips) && defined(SYSTYPE_SYSV))
+typedef void sigreturn_t;
 #else
-int   catch();
+typedef int sigreturn_t;
 #endif
+sigreturn_t catch();
 
 struct sigvec sig_vec = {
        catch,
This page took 0.092993 seconds and 5 git commands to generate.