From 3153e847e97c7a1dff6a70984734002f898b5a7c Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Wed, 4 Mar 1998 17:46:45 +0000 Subject: [PATCH] Signal decl from roken.h.in. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@4541 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/roken-common.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/roken/roken-common.h b/lib/roken/roken-common.h index 234d052b5..5608e8b20 100644 --- a/lib/roken/roken-common.h +++ b/lib/roken/roken-common.h @@ -125,4 +125,11 @@ #define __attribute__(x) #endif +#if IRIX != 4 /* fix for compiler bug */ +#ifdef RETSIGTYPE +typedef RETSIGTYPE (*SigAction)(/* int??? */); +SigAction signal(int iSig, SigAction pAction); /* BSD compatible */ +#endif +#endif + #endif /* __ROKEN_COMMON_H__ */