sbcl.sbcl/tools-for-build/os-provides-posix-spawn-test.c
2024-02-06 23:18:51 +03:00

11 lines
170 B
C

#include <features.h>
int main ()
{
#if defined __linux__ && ((__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 34))
return 104;
#else
return 1;
#endif
}