commit d49d2b5f12426332dc3291e89bc58b2154cc7b80
parent 248b368c29b8d93a795c0bd413950003608c1e3c
Author: Frederic Cambus <fred@statdns.com>
Date: Sun, 25 Nov 2018 17:25:32 +0100
Add missing #include guards for fonts.h
Diffstat:
1 file changed, 5 insertions(+), 0 deletions(-)
diff --git a/src/fonts.h b/src/fonts.h
@@ -10,6 +10,9 @@
* See LICENSE file for details.
*/
+#ifndef FONTS_H
+#define FONTS_H
+
#define FONTS 38
char *fonts[] = {
@@ -93,3 +96,5 @@ int fontsId[] = {
ANSILOVE_FONT_TOPAZ500,
ANSILOVE_FONT_TOPAZ500_PLUS
};
+
+#endif /* FONTS_H */