summaryrefslogtreecommitdiff
path: root/tests/test_basic.c
diff options
context:
space:
mode:
authorAlan Antonuk <alan.antonuk@gmail.com>2021-04-06 04:39:58 +0000
committerAlan Antonuk <alan.antonuk@gmail.com>2021-04-05 22:40:08 -0700
commitc8c117097934c9d2ecab30ce70efba98f0e267f8 (patch)
treee1e7ef1ccda0e3cd2f7c334e0d66bb4dd1e72d31 /tests/test_basic.c
parent5a75fbed8a4a86b612c9ecb83f78ca59e43e2838 (diff)
downloadrabbitmq-c-c8c117097934c9d2ecab30ce70efba98f0e267f8.tar.gz
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 <noreply@github.com>
Diffstat (limited to 'tests/test_basic.c')
-rw-r--r--tests/test_basic.c4
1 files changed, 2 insertions, 2 deletions
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 <rabbitmq-c/amqp.h>
+#include <rabbitmq-c/tcp_socket.h>
#include <stdio.h>
#include <stdlib.h>