diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2009-05-14 19:29:37 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2009-05-14 19:29:37 -0400 |
commit | 05c32dcc7565fb62ba81366403d8ca83ca9a3cd3 (patch) | |
tree | bd8e4aae8f4a05824a234e9780f4aee19841092a /vgasrc | |
parent | 6ace78f3684ddfbbafe67175f0f6888d8e14b5cf (diff) | |
download | seabios-05c32dcc7565fb62ba81366403d8ca83ca9a3cd3.tar.gz |
VGA: Add header guard to vgasrc/vgatables.h
Diffstat (limited to 'vgasrc')
-rw-r--r-- | vgasrc/vgatables.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vgasrc/vgatables.h b/vgasrc/vgatables.h index 82b13024..5db05fd5 100644 --- a/vgasrc/vgatables.h +++ b/vgasrc/vgatables.h @@ -1,3 +1,5 @@ +#ifndef __VGATABLES_H +#define __VGATABLES_H #include "types.h" // u8 @@ -132,3 +134,5 @@ u8 biosfn_get_single_palette_reg(u8 reg); // clext.c void cirrus_set_video_mode(u8 mode); void cirrus_init(); + +#endif // vgatables.h |