mirror of
https://github.com/darlinghq/darling.git
synced 2024-11-23 12:19:43 +00:00
13 lines
299 B
C
13 lines
299 B
C
// It's very unfortunate that apple's putc_unlocked is a macro and depends on
|
|
// the layout of FILE.
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
putc_unlocked('h', stdout);
|
|
putc_unlocked('o', stdout);
|
|
putc_unlocked('g', stdout);
|
|
putc_unlocked('e', stdout);
|
|
putc_unlocked('\n', stdout);
|
|
return 0;
|
|
}
|