mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
11 lines
170 B
C
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
|
|
}
|