summaryrefslogtreecommitdiff
path: root/file.h
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2023-01-08 14:57:40 -0700
committercflip <cflip@cflip.net>2023-01-08 14:57:40 -0700
commit095ef2947d858df7ccc9baa4806fe7366fca26bc (patch)
tree8682d0df1d02f755ca45584d619bc5f2ecb1998d /file.h
parent91195d34e1f71246cadc41705004d66ab647087e (diff)
Use C-style include guards instead of #pragma once
Diffstat (limited to 'file.h')
-rw-r--r--file.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/file.h b/file.h
index 831d193..70889ac 100644
--- a/file.h
+++ b/file.h
@@ -1,6 +1,9 @@
-#pragma once
+#ifndef _FILE_H
+#define _FILE_H
#include "editor.h"
void editor_open(struct editor_state* editor, char* filename);
void editor_save(struct editor_state* editor);
+
+#endif