From 5495d6ec2e4efca34dde55acb35d6c53e0e29e80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohensohn?= Date: Sun, 21 Mar 2004 00:15:16 +0000 Subject: [PATCH] another sim fix, I just _love_ to break these builds git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4417 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/common/stubs.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 84621a562b..b9a418d30f 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -252,3 +252,10 @@ int talk_value(int n, int unit, bool enqueue) (void)enqueue; return 0; } + +int talk_number(int n, bool enqueue) +{ + (void)n; + (void)enqueue; + return 0; +}