stdbool.h 334 B

123456789101112131415161718
  1. /*
  2. * stdarg.h - variable arguments
  3. *
  4. * (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
  5. * See the copyright notice in the ACK home directory, in the file "Copyright".
  6. */
  7. /* $Id$ */
  8. #ifndef _STDBOOL_H
  9. #define _STDBOOL_H
  10. typedef int bool;
  11. #define bool int
  12. #define true 1
  13. #define false 0
  14. #endif