rbb 2002/11/26 08:09:57
Added: test proc_child.c
Log:
Forgot to commit this file with the testproc changes.
Revision Changes Path
1.1 apr/test/proc_child.c
Index: proc_child.c
===================================================================
#include "apr.h"
#include <stdio.h>
#if APR_HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdlib.h>
int main(void)
{
char buf[256];
read(STDIN_FILENO, buf, 256);
fprintf(stdout, "%s", buf);
return 0; /* just to keep the compiler happy */
}
