From c8c117097934c9d2ecab30ce70efba98f0e267f8 Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Tue, 6 Apr 2021 04:39:58 +0000 Subject: Move official includes to rabbitmq-c/ directory Move official rabbitmq-c includes under the rabbitmq-c, thus new programs should use the following include paths: amqp.h -> rabbitmq-c/amqp.h amqp_tcp_socket.h -> rabbitmq-c/tcp_socket.h amqp_ssl_socket .h-> rabbitmq-c/ssl_socket.h amqp_framing.h -> rabbitmq-c/framing.h Existing include files are left with a warning message and including their new equivalents, so existing programs should compile without modification. Signed-off-by: GitHub --- tests/test_basic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/test_basic.c') diff --git a/tests/test_basic.c b/tests/test_basic.c index a7de044..6b6ca53 100644 --- a/tests/test_basic.c +++ b/tests/test_basic.c @@ -22,9 +22,9 @@ * SOFTWARE. */ -#include "amqp.h" -#include "amqp_tcp_socket.h" #include "amqp_time.h" +#include +#include #include #include -- cgit v1.2.1