diff options
author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-21 00:15:16 +0000 |
---|---|---|
committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-03-21 00:15:16 +0000 |
commit | 5495d6ec2e4efca34dde55acb35d6c53e0e29e80 (patch) | |
tree | 6b602774456926dba48de7966e2cb0fb9e2af50f | |
parent | beec2e97e6a5168f3528ad26a8db94010328b0c9 (diff) |
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
-rw-r--r-- | uisimulator/common/stubs.c | 7 |
1 files changed, 7 insertions, 0 deletions
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; +} |