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