/* * Dummy functions which are needed when we are not compiling * with MiNT libraries. For MiNT they are "real" enough. */ #ifndef __MINT__ #include long sigsetmask __PROTO((long mask)); long sigblock __PROTO((long mask)); #define sigmask(sig) (1L << (sig)) long sigsetmask(long mask) { return mask; } long sigblock(long mask) { return mask; } #endif /* __MINT__ */