blob: 98a6f3c03fe52c502ef2a19609911149b152a39e (
plain) (
blame)
1
2
3
4
5
6
7
|
! stdio.h
struct FILE;
extern static stdin FILE,
stdout FILE,
stderr FILE;
extern fn printf(fmt *const u8, ...) void;
extern fn fprintf(fp *FILE, fmt *const u8, ...) void;
|