home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
zip
/
gnu
/
txnf214s.lzh
/
TXNF214S
/
FAKEMINT.H
< prev
next >
Wrap
C/C++ Source or Header
|
1993-07-29
|
391b
|
25 lines
/*
* Dummy functions which are needed when we are not compiling
* with MiNT libraries. For MiNT they are "real" enough.
*/
#ifndef __MINT__
#include <compiler.h>
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__ */