summaryrefslogtreecommitdiff
path: root/uisimulator/common/stubs.c
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/common/stubs.c')
-rw-r--r--uisimulator/common/stubs.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c
index 2781b7e9f8..f999b2fd95 100644
--- a/uisimulator/common/stubs.c
+++ b/uisimulator/common/stubs.c
@@ -111,3 +111,11 @@ void lcd_define_pattern (int which,char *pattern,int length)
111 (void)pattern; 111 (void)pattern;
112 (void)length; 112 (void)length;
113} 113}
114
115void lcd_putc(int x, int y, unsigned char ch)
116{
117 (void)x;
118 (void)y;
119 (void)ch;
120}
121