Sign in
apache
/
apr
/
d9c72e2007b539d7e18c3a05a8a8050bae9d32c6
/
.
/
test
/
occhild.c
blob: 05df4ae7d229a60c5257d7119b6f51de32b7c538 [
file
] [
log
] [
blame
]
#include
"apr.h"
#include
<stdio.h>
#if APR_HAVE_UNISTD_H
#include
<unistd.h>
#endif
#include
<stdlib.h>
int
main
(
void
)
{
char
buf
[
256
];
while
(
1
)
{
read
(
STDERR_FILENO
,
buf
,
256
);
}
return
0
;
/* just to keep the compiler happy */
}