aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/simpleparse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/simpleparse.h')
-rw-r--r--src/stdlib/simpleparse.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stdlib/simpleparse.h b/src/stdlib/simpleparse.h
index 6435807f..da9dca50 100644
--- a/src/stdlib/simpleparse.h
+++ b/src/stdlib/simpleparse.h
@@ -1,5 +1,3 @@
-#pragma once
-
// This file defines some functions to make it easy to parse simply formatted
// strings **correctly** without memory bugs.
//
@@ -16,6 +14,8 @@
// if ((err=strparse("one, two", &item1, ",", PARSE_WHITESPACE, &item2)))
// errx(1, "Failed to parse items at: ", err);
+#pragma once
+
#include <stdbool.h>
#include <stdint.h>
#include <stdio.h>