summaryrefslogtreecommitdiff
path: root/test/occhild.c
blob: fec8c49caaae1dd91c56413002ef6a75941bd325 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
#include <unistd.h>
#include <stdlib.h>

int main(void)
{
    char buf[256];

    while (1) {
        read(STDERR_FILENO, buf, 256);
    }
    return 0; /* just to keep the compiler happy */
}