mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
11 lines
92 B
C
11 lines
92 B
C
#include <windows.h>
|
|
|
|
int main ()
|
|
{
|
|
#ifdef _UCRT
|
|
return 104;
|
|
#else
|
|
return 1;
|
|
#endif
|
|
}
|