ftmemsim-valgrind/none/tests/fdleak_pipe.c
Florian Krohm 9de72049d5 Silence clang warnings for the none and exp-sgcheck tools.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13605
2013-10-02 15:37:03 +00:00

14 lines
160 B
C

#include <unistd.h>
#include "fdleak.h"
int main (int argc, char **argv)
{
int fds[2];
CLOSE_INHERITED_FDS;
(void) DO( pipe(fds) );
return 0;
}