1.0.14: release, will be tagged as sbcl_1_0_14
[sbcl/simd.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;