bbstd.h 363 B

1234567891011121314151617181920212223242526
  1. #ifndef BB_STD_H
  2. #define BB_STD_H
  3. #if __OBJC__
  4. #import <Foundation/Foundation.h>
  5. #endif
  6. #include <new>
  7. #include <initializer_list>
  8. #include <cstdio>
  9. #include <cstdlib>
  10. #include <cstring>
  11. #include <cctype>
  12. #include <cmath>
  13. #ifdef BB_THREADS
  14. #include <atomic>
  15. #endif
  16. #ifndef _MSC_VER
  17. #define __forceinline inline __attribute__((always_inline))
  18. #endif
  19. #endif