main.h 244 B

123456789101112131415
  1. #ifndef AFUN_MAIN_H
  2. #define AFUN_MAIN_H
  3. #ifdef aFunWIN32_NO_CYGWIN
  4. #include <io.h>
  5. #define fileno _fileno
  6. #define isatty _isatty
  7. #else
  8. #include "unistd.h"
  9. #endif
  10. extern char *base_path;
  11. extern Logger *aFunlangLogger;
  12. #endif //AFUN_MAIN_H