diff options
| author | Garrett D'Amore <garrett@damore.org> | 2025-10-11 06:50:54 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2025-10-11 06:50:54 -0700 |
| commit | 2f24a1b1c93b8c45dce391ed0439131f9ad8cf28 (patch) | |
| tree | 51065064cec7f35b900291fb2a101b7dbe3b6826 /src/core/url.c | |
| parent | b98e03b26bfc593326bd7c1d56fd69626f6a93cb (diff) | |
| download | nng-2f24a1b1c93b8c45dce391ed0439131f9ad8cf28.tar.gz nng-2f24a1b1c93b8c45dce391ed0439131f9ad8cf28.tar.bz2 nng-2f24a1b1c93b8c45dce391ed0439131f9ad8cf28.zip | |
fix includes for core
Diffstat (limited to 'src/core/url.c')
| -rw-r--r-- | src/core/url.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/core/url.c b/src/core/url.c index fb13ee59..b6323ba0 100644 --- a/src/core/url.c +++ b/src/core/url.c @@ -8,16 +8,15 @@ // found online at https://opensource.org/licenses/MIT. // -#include "core/defs.h" -#include "core/nng_impl.h" - #include <ctype.h> #include <stdbool.h> #include <stdio.h> #include <string.h> -#include "core/platform.h" -#include "nng/nng.h" +#include "aio.h" +#include "defs.h" +#include "platform.h" +#include "strs.h" #include "url.h" static uint8_t |
