24 lines
382 B
C
24 lines
382 B
C
/**
|
|
* :author: Dan Buch (daniel.buch@gmail.com)
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
|
|
int main()
|
|
{
|
|
printf("This time we'll include \\n!\n");
|
|
printf("(Hit ^C to stop the madness.)\n");
|
|
while(1)
|
|
{
|
|
fprintf(stdout, "hello-out\n");
|
|
fprintf(stderr, "hello-err\n");
|
|
sleep(1);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
|
|
/* vim:filetype=c:fileencoding=utf-8
|
|
*/
|