diff options
Diffstat (limited to 'lcc/include/alpha/osf/signal.h')
-rwxr-xr-x | lcc/include/alpha/osf/signal.h | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/lcc/include/alpha/osf/signal.h b/lcc/include/alpha/osf/signal.h index 22f98bc..c208a6b 100755 --- a/lcc/include/alpha/osf/signal.h +++ b/lcc/include/alpha/osf/signal.h @@ -1,20 +1,20 @@ -#ifndef __SIGNAL
-#define __SIGNAL
-
-typedef int sig_atomic_t;
-
-#define SIG_DFL ((void (*)(int))0)
-#define SIG_ERR ((void (*)(int))-1)
-#define SIG_IGN ((void (*)(int))1)
-
-#define SIGABRT 6
-#define SIGFPE 8
-#define SIGILL 4
-#define SIGINT 2
-#define SIGSEGV 11
-#define SIGTERM 15
-
-void (*signal(int, void (*)(int)))(int);
-int raise(int);
-
-#endif /* __SIGNAL */
+#ifndef __SIGNAL +#define __SIGNAL + +typedef int sig_atomic_t; + +#define SIG_DFL ((void (*)(int))0) +#define SIG_ERR ((void (*)(int))-1) +#define SIG_IGN ((void (*)(int))1) + +#define SIGABRT 6 +#define SIGFPE 8 +#define SIGILL 4 +#define SIGINT 2 +#define SIGSEGV 11 +#define SIGTERM 15 + +void (*signal(int, void (*)(int)))(int); +int raise(int); + +#endif /* __SIGNAL */ |