mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
14 lines
153 B
C
14 lines
153 B
C
#include <unistd.h>
|
|
#include "fdleak.h"
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
int fds[2];
|
|
|
|
CLOSE_INHERITED_FDS;
|
|
|
|
DO( pipe(fds) );
|
|
|
|
return 0;
|
|
}
|