Skip to content

Commit c633c09

Browse files
committed
Include correct header files
1 parent 84c5520 commit c633c09

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

include/buffer.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#ifndef _WOB_BUFFER_H
22
#define _WOB_BUFFER_H
33

4-
#include <stdbool.h>
5-
#include <stdint.h>
4+
#include <stddef.h>
65

76
int wob_shm_create();
87

include/color.h

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#ifndef _WOB_COLOR_H
22
#define _WOB_COLOR_H
33

4+
#include <stdint.h>
5+
46
struct wob_color {
57
float alpha;
68
float red;

include/parse.h

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
#define _WOB_PARSE_H
33

44
#include <stdbool.h>
5-
#include <stdint.h>
65

76
#include "color.h"
87

0 commit comments

Comments
 (0)