new test system
[libc-test] / src / common / fdfill.c
1 #include <unistd.h>
2 #include "test.h"
3
4 void t_fdfill(void)
5 {
6         int fd[2];
7         while (pipe(fd) == 0);
8         dup(0);
9 }