Fix make-array transforms.
[sbcl.git] / tools-for-build / os-provides-putwc-test.c
1 /* test to build and run so that we know if we have putwc */
2
3 #include <stdio.h>
4 #include <wchar.h>
5
6 int main ()
7 {
8     wchar_t a = 'a';
9     putwc(a, stdout);
10     return 104;
11 }