source:
trunk/minix/lib/stdio/getc.c@
9
Last change on this file since 9 was 9, checked in by , 13 years ago | |
---|---|
File size: 208 bytes |
Line | |
---|---|
1 | /* |
2 | * getc.c - read an unsigned character |
3 | */ |
4 | /* $Header: /cvsup/minix/src/lib/stdio/getc.c,v 1.1.1.1 2005/04/21 14:56:35 beng Exp $ */ |
5 | |
6 | #include <stdio.h> |
7 | |
8 | int |
9 | (getc)(FILE *stream) |
10 | { |
11 | return getc(stream); |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.