summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-07-01 16:24:34 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-07-01 16:24:34 +0200
commit7012b3587fde6cd1f1dc5fd1f3c59428581e5316 (patch)
tree6403ed51c14aafa87344d2ffee45c8cd32fe6aa9
parentaf70f178d8fe801d05fe83d00a09509834f4f65c (diff)
downloadabaos-7012b3587fde6cd1f1dc5fd1f3c59428581e5316.tar.gz
abaos-7012b3587fde6cd1f1dc5fd1f3c59428581e5316.tar.bz2
added a preprocessor guard to vga_font.h
-rw-r--r--src/drivers/video/vga_font.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/drivers/video/vga_font.h b/src/drivers/video/vga_font.h
index 9c1ba1b..fd66c3b 100644
--- a/src/drivers/video/vga_font.h
+++ b/src/drivers/video/vga_font.h
@@ -1,3 +1,6 @@
+#ifndef VGA_FONT_H
+#define VGA_FONT_H
+
// (c) 2009, 2010 Lutz Sammer, License: AGPLv3
/// bitmap font structure
@@ -270,3 +273,5 @@ struct bitmap_font {
/// @}
extern const struct bitmap_font vga_font;
+
+#endif // VGA_FONT_H