blob: 405bb7f5b6c88de461bf848379c9dffebf9f9f03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "apr.h"
#include <stdio.h>
#if APR_HAVE_UNISTD_H
#include <unistd.h>
#endif
#if APR_HAVE_IO_H
#include <io.h>
#endif
#include <stdlib.h>
int main(void)
{
char buf[256];
apr_ssize_t bytes;
bytes = read(STDIN_FILENO, buf, 256);
if (bytes > 0)
write(STDOUT_FILENO, buf, bytes);
return 0; /* just to keep the compiler happy */
}
|