mirror of
git://repo.or.cz/tinycc.git
synced 2026-06-20 03:44:19 +08:00
12 lines
156 B
C
12 lines
156 B
C
#include <stdio.h>
|
|
|
|
int main(void)
|
|
{
|
|
char buf[128];
|
|
|
|
if (!fgets(buf, sizeof(buf), stdin))
|
|
return 1;
|
|
fputs(buf, stdout);
|
|
return 0;
|
|
}
|