diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-02-14 06:37:48 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-02-14 06:37:48 +0000 |
| commit | 1281b1c06523d704525195185f670f8b4f8b904d (patch) | |
| tree | 78103330eb1aa5b96815413066f4a2782bf5e875 /firmware/include/font_cache.h | |
| parent | 1c2aa35371aed8d895b3448dad865b913da57cfb (diff) | |
| download | rockbox-1281b1c06523d704525195185f670f8b4f8b904d.zip rockbox-1281b1c06523d704525195185f670f8b4f8b904d.tar.gz rockbox-1281b1c06523d704525195185f670f8b4f8b904d.tar.bz2 rockbox-1281b1c06523d704525195185f670f8b4f8b904d.tar.xz | |
fix red
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24645 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/include/font_cache.h')
| -rw-r--r-- | firmware/include/font_cache.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/include/font_cache.h b/firmware/include/font_cache.h index 2334961..e625abb 100644 --- a/firmware/include/font_cache.h +++ b/firmware/include/font_cache.h @@ -17,7 +17,8 @@ * KIND, either express or implied. * ****************************************************************************/ - +#ifndef _FONT_CACHE_H_ +#define _FONT_CACHE_H_ #include "lru.h" /******************************************************************************* @@ -48,3 +49,5 @@ struct font_cache_entry* font_cache_get( unsigned short char_code, void (*callback) (struct font_cache_entry* p, void *callback_data), void *callback_data); + +#endif |