summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIru Cai <mytbk920423@gmail.com>2018-11-16 22:27:45 +0800
committerIru Cai <mytbk920423@gmail.com>2018-11-16 22:28:33 +0800
commit5f84666b4b50308fac9e79fc70badf76ac4b6e53 (patch)
treef90c728a55aa31a85666e7bd0bc73a001267a07a
parentbefedcdb8dab02ff4a9b904810eade49c0890cc5 (diff)
downloadrich4-5f84666b4b50308fac9e79fc70badf76ac4b6e53.tar.xz
graph_struct.h: include guard
-rw-r--r--csrc/mkf/graph_struct.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/csrc/mkf/graph_struct.h b/csrc/mkf/graph_struct.h
index 4859508..2d20a5e 100644
--- a/csrc/mkf/graph_struct.h
+++ b/csrc/mkf/graph_struct.h
@@ -3,6 +3,9 @@
* SPDX-License-Identifier: GPL-3.0-or-later
*/
+#ifndef RICH4_GRAPH_STRUCT_H_YxnQlWsLYw
+#define RICH4_GRAPH_STRUCT_H_YxnQlWsLYw
+
#include <stdint.h>
struct graph_st
@@ -17,3 +20,5 @@ struct graph_st
struct graph_st * allocate_graph_st(int w, int h, int x, int y);
struct graph_st * crop_graph(struct graph_st *a1, struct graph_st *a2, int x, int y, int w, int h);
+
+#endif