This commit is contained in:
Dão Gottwald 2010-03-05 13:35:23 +01:00
Родитель c1f7eefbf4 54cbc60d3a
Коммит ffb91854cd
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -1,8 +1,9 @@
#include <unistd.h> #include <stdio.h>
int main() int main()
{ {
while(1) sleep(10); char text[20];
fgets(text, sizeof text, stdin);
return 0; return 0;
} }