at_wini also needs a pci_reserve() for the pci compatability device, if
[minix3.git] / lib / stdio / putc.c
blobfc8971c3c01abdc218bbb7d6ce883544675e6da1
1 /*
2 * putc.c - print (or buffer) one character
3 */
4 /* $Header$ */
6 #include <stdio.h>
8 int
9 (putc)(int c, FILE *stream)
11 return putc(c, stream);