summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2010-02-14 06:37:48 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2010-02-14 06:37:48 +0000
commit1281b1c06523d704525195185f670f8b4f8b904d (patch)
tree78103330eb1aa5b96815413066f4a2782bf5e875
parent1c2aa35371aed8d895b3448dad865b913da57cfb (diff)
downloadrockbox-1281b1c06523d704525195185f670f8b4f8b904d.tar.gz
rockbox-1281b1c06523d704525195185f670f8b4f8b904d.zip
fix red
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24645 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/include/font_cache.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/firmware/include/font_cache.h b/firmware/include/font_cache.h
index 2334961002..e625abb79e 100644
--- a/firmware/include/font_cache.h
+++ b/firmware/include/font_cache.h
@@ -17,7 +17,8 @@
17 * KIND, either express or implied. 17 * KIND, either express or implied.
18 * 18 *
19 ****************************************************************************/ 19 ****************************************************************************/
20 20#ifndef _FONT_CACHE_H_
21#define _FONT_CACHE_H_
21#include "lru.h" 22#include "lru.h"
22 23
23/******************************************************************************* 24/*******************************************************************************
@@ -48,3 +49,5 @@ struct font_cache_entry* font_cache_get(
48 unsigned short char_code, 49 unsigned short char_code,
49 void (*callback) (struct font_cache_entry* p, void *callback_data), 50 void (*callback) (struct font_cache_entry* p, void *callback_data),
50 void *callback_data); 51 void *callback_data);
52
53#endif