macro.h 414 B

1234567891011121314151617181920212223
  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. #include <dlfcn.h>
  15. // 布尔逻辑的定义
  16. #define bool int
  17. #define true 1
  18. #define false 0
  19. #define NUL 0
  20. #endif //VIRTUALMATH_MACRO_H