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