blob: 1e2d416e9f9f8eba1b2aee9ab261cf1013d81a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* Plan:
*
* blocking_read()
*
* select (fd);
* if (readable)
* read();
*
*
* handle SIGUSR1
* write spam to commandline given file
*
*/
int
main ()
{
return 0;
}
|