Browse Source

compat: Fix pipe prototype

Hugo Beauzée-Luyssen 9 years ago
parent
commit
50142e811b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compat/compat.c

+ 1 - 1
compat/compat.c

@@ -4,7 +4,7 @@
 
 #include <fcntl.h>
 
-static inline int pipe(int fds[2])
+int pipe(int fds[2])
 {
     return _pipe(fds, 32768, O_NOINHERIT | O_BINARY);
 }