compat.c 189 B

123456789101112
  1. #include "config.h"
  2. #if !defined(HAVE_PIPE) && defined(HAVE__PIPE)
  3. #include <fcntl.h>
  4. static inline int pipe(int fds[2])
  5. {
  6. return _pipe(fds, 32768, O_NOINHERIT | O_BINARY);
  7. }
  8. #endif