mirror of
https://review.haiku-os.org/buildtools
synced 2024-11-23 07:18:49 +01:00
17 lines
268 B
C
17 lines
268 B
C
#include <features.h>
|
|
#if defined(__UCLIBC__)
|
|
LIBC=uclibc
|
|
#elif defined(__dietlibc__)
|
|
LIBC=dietlibc
|
|
#elif defined(__GLIBC__)
|
|
LIBC=gnu
|
|
#else
|
|
#include <stdarg.h>
|
|
/* First heuristic to detect musl libc. */
|
|
#ifdef __DEFINED_va_list
|
|
LIBC=musl
|
|
#else
|
|
LIBC=gnu
|
|
#endif
|
|
#endif
|