diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-01-22 13:26:28 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-01-22 13:26:28 -0800 |
| commit | 9b373f8dc63a5a400df4c95ef3daf27b44181119 (patch) | |
| tree | fde2d53699da8fec9f352e13805d95c98b1829c8 /src/platform/posix/posix_pipe.c | |
| parent | bc06cb896b25c86e646017548f357f0e7724531e (diff) | |
| download | nng-9b373f8dc63a5a400df4c95ef3daf27b44181119.tar.gz nng-9b373f8dc63a5a400df4c95ef3daf27b44181119.tar.bz2 nng-9b373f8dc63a5a400df4c95ef3daf27b44181119.zip | |
Initial start of compat layer with bind, connect, etc. Untested.
Diffstat (limited to 'src/platform/posix/posix_pipe.c')
| -rw-r--r-- | src/platform/posix/posix_pipe.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/platform/posix/posix_pipe.c b/src/platform/posix/posix_pipe.c index 28cd909c..c86022ef 100644 --- a/src/platform/posix/posix_pipe.c +++ b/src/platform/posix/posix_pipe.c @@ -12,6 +12,8 @@ #ifdef PLATFORM_POSIX_PIPE +#include <errno.h> + // This implementation of notification pipes works ~everywhere on POSIX, // as it only relies on pipe() and non-blocking I/O. |
