config.h 387 B

12345678910111213141516171819
  1. /* $Source$
  2. * $State$
  3. * $Revision$
  4. */
  5. #ifndef _ACK_CONFIG_H
  6. #define _ACK_CONFIG_H
  7. /* We're providing a time() system call rather than wanting a wrapper around
  8. * gettimeofday() in the libc. */
  9. #define ACKCONF_TIME_IS_A_SYSCALL
  10. /* Since the i80 code generator doesn't support floating point, don't include
  11. * it in the stdio libraries. */
  12. #define ACKCONF_NO_STDIO_FLOAT
  13. #endif