Skip to content

Commit

Permalink
fix: #include rbus headers using quotes instead of angle brackets to …
Browse files Browse the repository at this point in the history
…search same directory instead of system include paths
  • Loading branch information
sheabot committed Oct 13, 2023
1 parent 6ad750d commit d549f8f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions include/rbus.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@
#define RBUS_H

#include <stddef.h>
#include <rbus_value.h>
#include <rbus_property.h>
#include <rbus_object.h>
#include <rbus_filter.h>
#include "rbus_value.h"
#include "rbus_property.h"
#include "rbus_object.h"
#include "rbus_filter.h"

#ifdef __cplusplus
extern "C" {
Expand Down Expand Up @@ -1896,7 +1896,7 @@ rbusError_t rbus_closeDirect(rbusHandle_t handle);
}
#endif

#include <rbus_message.h>
#include "rbus_message.h"

#endif

Expand Down
2 changes: 1 addition & 1 deletion include/rbus_filter.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#ifndef RBUS_FILTER_H
#define RBUS_FILTER_H

#include <rbus_value.h>
#include "rbus_value.h"

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion include/rbus_message.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#ifndef RBUS_MESSAGE_H
#define RBUS_MESSAGE_H

#include <rbus.h>
#include "rbus.h"

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion include/rbus_object.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
#ifndef RBUS_OBJECT_H
#define RBUS_OBJECT_H

#include <rbus_property.h>
#include "rbus_property.h"
#ifdef __cplusplus
extern "C" {
#endif
Expand Down
2 changes: 1 addition & 1 deletion include/rbus_property.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
#ifndef RBUS_PROPERTY_H
#define RBUS_PROPERTY_H

#include <rbus_value.h>
#include "rbus_value.h"

#ifdef __cplusplus
extern "C" {
Expand Down

0 comments on commit d549f8f

Please sign in to comment.