repo.or.cz
/
sbcl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Don't choke on invalid objects when GCing weak hash-tables.
[sbcl.git]
/
tools-for-build
/
os-provides-putwc-test.c
blob
676f1358651fdc1bd09bad6d4bc4f59f0ce913e9
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
}