1.0.23.36: typecheck :ALLOCATION :CLASS slot initforms in safe code
[sbcl/tcr.git] / tools-for-build / os-provides-putwc-test.c
blob676f1358651fdc1bd09bad6d4bc4f59f0ce913e9
1 /* test to build and run so that we know if we have putwc */
3 #include <stdio.h>
4 #include <wchar.h>
6 int main ()
8 wchar_t a = 'a';
9 putwc(a, stdout);
10 return 104;