diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-10-10 21:14:18 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-10-10 21:14:50 -0700 |
| commit | a2af09f90b86378dd5cb65a55465fe61e951e9f9 (patch) | |
| tree | 49cf8f2d122574c7669373433c0210c7756fcfca | |
| parent | 553ed74c7ae8a1bb79ade90ec8a3fab92a8a34a7 (diff) | |
| download | nng-a2af09f90b86378dd5cb65a55465fe61e951e9f9.tar.gz nng-a2af09f90b86378dd5cb65a55465fe61e951e9f9.tar.bz2 nng-a2af09f90b86378dd5cb65a55465fe61e951e9f9.zip | |
aio.c - include file fixes
| -rw-r--r-- | src/core/aio.c | 5 | ||||
| -rw-r--r-- | src/core/aio_test.c | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/src/core/aio.c b/src/core/aio.c index 510e568a..5b0ac6dc 100644 --- a/src/core/aio.c +++ b/src/core/aio.c @@ -9,8 +9,11 @@ // #include "aio.h" -#include "nng_impl.h" +#include "defs.h" +#include "message.h" +#include "reap.h" #include "taskq.h" + #include <string.h> struct nni_aio_expire_q { diff --git a/src/core/aio_test.c b/src/core/aio_test.c index 99060349..9e1fcd35 100644 --- a/src/core/aio_test.c +++ b/src/core/aio_test.c @@ -8,9 +8,7 @@ // found online at https://opensource.org/licenses/MIT. // -#include <string.h> - -#include "nuts.h" +#include "../testing/nuts.h" static void cb_done(void *p) |
