xref: /openbsd-src/gnu/usr.bin/perl/win32/configure/rt.c (revision 5486feefcc8cb79b19e014ab332cc5dfd05b3b33)
1 /*
2  Print the default runtime. $Config{libc}
3  will be set to this specified value.
4 */
5 #include <stdio.h>
6 #include <stddef.h>
7 
8 int main(void) {
9 #if defined(_UCRT)
10   printf("-lucrt\n");
11 #else
12   printf("-lmsvcrt\n");
13 #endif
14   return 0;
15 }
16