diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-27 20:45:36 -0600 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-09-27 20:45:36 -0600 |
commit | fa357459f88bb8f0170d1a68df66e7d068d59996 (patch) | |
tree | 8585b5755ae224c6609f982d973141f1f6bad97b /libnetio/netio_posix.c | |
parent | d54ddec236bf9bdb8c032cd5fbdb0aa46ffebe86 (diff) |
fixes
Diffstat (limited to 'libnetio/netio_posix.c')
-rw-r--r-- | libnetio/netio_posix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libnetio/netio_posix.c b/libnetio/netio_posix.c index 46851f7..133b226 100644 --- a/libnetio/netio_posix.c +++ b/libnetio/netio_posix.c @@ -16,9 +16,9 @@ # include <fcntl.h> /* for fcntl(), F_SETFL, O_ASYNC, F_SETSIG */ #endif -#include "netio.h" -#include "coroutine.h" -#include "coroutine_sema.h" +#include <libnetio/netio.h> +#include <libcr/coroutine.h> +#include <libcr_ipc/sema.h> /* I found the following post to be very helpful when writing this: * http://davmac.org/davpage/linux/async-io.html */ |