sbcl.sbcl/tools-for-build/ucrt-test.c
2025-04-04 02:11:04 +03:00

11 lines
92 B
C

#include <windows.h>
int main ()
{
#ifdef _UCRT
return 104;
#else
return 1;
#endif
}