macro.h 302 B

1234567891011121314151617
  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. // 布尔逻辑的定义
  11. #define bool int
  12. #define true 1
  13. #define false 0
  14. #endif //VIRTUALMATH_MACRO_H