|
12345678910111213141516171819 |
-
- #ifndef _SERD_CONFIG_H_
- #define _SERD_CONFIG_H_
-
- #define SERD_INTERNAL
- #define SERD_VERSION "0.22.0"
-
- #define HAVE_FILENO 1
-
- #if defined(__APPLE__) || defined(_WIN32)
- // nothing
- #elif defined(__HAIKU__)
- #define HAVE_POSIX_MEMALIGN 1
- #else
- #define HAVE_POSIX_MEMALIGN 1
- #define HAVE_POSIX_FADVISE 1
- #endif
-
- #endif /* _SERD_CONFIG_H_ */
|