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 >
C/C++ Source or Header  |  1993-07-29  |  391b  |  25 lines

  1. /*
  2.  * Dummy functions which are needed when we are not compiling
  3.  * with MiNT libraries.  For MiNT they are "real" enough.
  4.  */
  5.  
  6. #ifndef __MINT__
  7. #include <compiler.h>
  8.  
  9. long    sigsetmask    __PROTO((long mask));
  10. long    sigblock    __PROTO((long mask));
  11. #define sigmask(sig) (1L << (sig))
  12.  
  13. long
  14. sigsetmask(long mask)
  15. {
  16.   return mask;
  17. }
  18.  
  19. long
  20. sigblock(long mask)
  21. {
  22.   return mask;
  23. }
  24. #endif /* __MINT__ */
  25.