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