system.par 433 B

1234567891011121314151617181920
  1. /* This file is part of the software similarity tester SIM.
  2. Written by Dick Grune, Vrije Universiteit, Amsterdam.
  3. $Id: system.par,v 1.2 2001/09/28 09:03:55 dick Exp $
  4. */
  5. /* Operating-system dependent data */
  6. #ifdef UNIX
  7. #define int32 int /* type of a 32 bits signed int */
  8. #define NULLFILE "/dev/null"
  9. #endif
  10. #ifdef MSDOS /* GNU gcc */
  11. #define int32 int /* type of a 32 bits signed int */
  12. #define NULLFILE "nul"
  13. #endif