Skip to content

Commit

Permalink
global: fix missing header files
Browse files Browse the repository at this point in the history
  • Loading branch information
prajnoha committed Jan 19, 2024
1 parent 2dadba9 commit 5191fd7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/include/base/buffer-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#ifndef _SID_BUFFER_COMMON_H
#define _SID_BUFFER_COMMON_H

#include <inttypes.h>
#include <stdbool.h>
#include <stddef.h>

Expand Down
1 change: 1 addition & 0 deletions src/include/base/buffer-type.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

#include "base/buffer-common.h"

#include <stdarg.h>
#include <sys/types.h>

struct sid_buffer {
Expand Down
2 changes: 2 additions & 0 deletions src/include/resource/resource.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
#ifndef _SID_RESOURCE_H
#define _SID_RESOURCE_H

#include "internal/common.h"

#include "base/buffer.h"
#include "iface/service-link.h"
#include "internal/formatter.h"
Expand Down
2 changes: 0 additions & 2 deletions src/resource/module-registry.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
* along with SID. If not, see <http://www.gnu.org/licenses/>.
*/

#include "internal/common.h"

#include "resource/module-registry.h"

#include "internal/mem.h"
Expand Down
1 change: 1 addition & 0 deletions src/resource/worker-control.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

#include <dirent.h>
#include <limits.h>
#include <string.h>
#include <sys/prctl.h>
#include <unistd.h>

Expand Down

0 comments on commit 5191fd7

Please sign in to comment.