summaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorDaniel Carl <danielcarl@gmx.de>2013-02-16 00:52:34 +0100
committerDaniel Carl <danielcarl@gmx.de>2013-02-16 11:51:54 +0100
commit78d3d1b883f7762327cc3f462e7a64eb6c0d95e6 (patch)
tree84ca9676cc1499ae38f9e8595cb1f4018cc5d1e7 /src/util.h
parente4527945062de14364fb8a1af01aec0bff6bc345 (diff)
Added a '_' before the include guards.
This is not required, but seems to be the common practice.
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util.h b/src/util.h
index 5dd747b..1e6549a 100644
--- a/src/util.h
+++ b/src/util.h
@@ -17,8 +17,8 @@
* along with this program. If not, see http://www.gnu.org/licenses/.
*/
-#ifndef UTIL_H
-#define UTIL_H
+#ifndef _UTIL_H
+#define _UTIL_H
#include "main.h"
@@ -30,4 +30,4 @@ void util_create_file_if_not_exists(const gchar* filename);
gchar* util_get_file_contents(const gchar* filename, gsize* length);
gchar** util_get_lines(const gchar* filename);
-#endif /* end of include guard: UTIL_H */
+#endif /* end of include guard: _UTIL_H */