diff options
Diffstat (limited to 'tests/pipe.c')
| -rw-r--r-- | tests/pipe.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/tests/pipe.c b/tests/pipe.c index dfebbd56..d3630289 100644 --- a/tests/pipe.c +++ b/tests/pipe.c @@ -8,16 +8,17 @@ // found online at https://opensource.org/licenses/MIT. // -#include "convey.h" -#include "nng.h" -#include "protocol/pipeline0/pull.h" -#include "protocol/pipeline0/push.h" -#include "supplemental/util/platform.h" - -#include "stubs.h" #include <stdbool.h> #include <string.h> +#include <nng/nng.h> +#include <nng/protocol/pipeline0/pull.h> +#include <nng/protocol/pipeline0/push.h> +#include <nng/supplemental/util/platform.h> + +#include "convey.h" +#include "stubs.h" + #define APPENDSTR(m, s) nng_msg_append(m, s, strlen(s)) #define CHECKSTR(m, s) \ So(nng_msg_len(m) == strlen(s)); \ |
