12345678910111213141516171819202122 |
- #ifndef VIRTUALMATH_MACRO_H
- #define VIRTUALMATH_MACRO_H
- #include <sys/stat.h>
- #include <stdio.h>
- #include <string.h>
- #include <stdlib.h>
- #include <stdarg.h>
- #include <getopt.h>
- #include <unistd.h>
- #include <ctype.h>
- #include <setjmp.h>
- #include <signal.h>
- #include <unistd.h>
- // 布尔逻辑的定义
- #define bool int
- #define true 1
- #define false 0
- #define NUL 0
- #endif //VIRTUALMATH_MACRO_H
|