home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume26 / cforms / part01 / src / config.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-18  |  666 b   |  34 lines

  1. /******************************************************************************
  2.  *
  3.  *            C O N F I G . H
  4.  *            ---------------
  5.  *
  6.  * Description:
  7.  *    Configuration file for setting up switches depending
  8.  *    of machine type.
  9.  * 
  10.  * Revision:
  11.  *    Ver    Date    By        Reason
  12.  *    ---    ----    --        ------
  13.  *    1.00    900815    Lars Berntzon    Created
  14.  *
  15.  ****************************************************************************/
  16. #ifndef _CONFIG_H
  17. #define _CONFIG_H
  18.  
  19. #ifdef SYS_AMIGA
  20. #define STDLIB_H
  21. #define VOID_MAIN
  22. #endif
  23.  
  24. #ifdef SYS_SYSV
  25. #define SIGNAL_TYPE void(*)()
  26. #define TERMIOS
  27. #define MALLOC_H
  28. #endif
  29.  
  30. #ifndef SIGNAL_TYPE
  31. #define SIGNAL_TYPE void(*)()
  32. #endif
  33. #endif /* _CONFIG_H */
  34.