macro.h 395 B

12345678910111213141516171819202122
  1. #ifndef VIRTUALMATH_MACRO_H
  2. #define VIRTUALMATH_MACRO_H
  3. #include <sys/stat.h>
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <stdlib.h>
  7. #include <stdarg.h>
  8. #include <getopt.h>
  9. #include <unistd.h>
  10. #include <ctype.h>
  11. #include <setjmp.h>
  12. #include <signal.h>
  13. #include <unistd.h>
  14. // 布尔逻辑的定义
  15. #define bool int
  16. #define true 1
  17. #define false 0
  18. #define NUL 0
  19. #endif //VIRTUALMATH_MACRO_H