repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Don't call ReadArgs() if started from WB.
[tangerine.git]
/
compiler
/
clib
/
putchar.c
blob
bcebe2baf424c4d1b06a4151697650a90a7db621
1
/*
2
Copyright © 1995-2001, The AROS Development Team. All rights reserved.
3
$Id$
4
5
ISO C function putchar()
6
*/
7
8
#include <stdio.h>
9
10
int
putchar
(
int
c
)
11
{
12
return
putc
(
c
,
stdout
);
13
}