diff options
author | Daniel Carl <danielcarl@gmx.de> | 2013-02-16 00:52:34 +0100 |
---|---|---|
committer | Daniel Carl <danielcarl@gmx.de> | 2013-02-16 11:51:54 +0100 |
commit | 78d3d1b883f7762327cc3f462e7a64eb6c0d95e6 (patch) | |
tree | 84ca9676cc1499ae38f9e8595cb1f4018cc5d1e7 /src/util.h | |
parent | e4527945062de14364fb8a1af01aec0bff6bc345 (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.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 */ |