diff options
author | Björn Stenberg <bjorn@haxx.se> | 2003-02-14 09:44:34 +0000 |
---|---|---|
committer | Björn Stenberg <bjorn@haxx.se> | 2003-02-14 09:44:34 +0000 |
commit | c4d8d970f6602c80d7362a41da8851dbbf59ae1b (patch) | |
tree | 7e8f936eae5c1854c006c4fe134c4c2ce6f91291 /uisimulator/common/stubs.c | |
parent | 84706a4188cea193a5a095855c1068b1c31a3875 (diff) |
The power-saving SLEEP patch by Simon Elén.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3259 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common/stubs.c')
-rw-r--r-- | uisimulator/common/stubs.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index e25c3ec2ce..cfef2b5bff 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -221,3 +221,8 @@ void lcd_fillrect (int x, int y, int nx, int ny) (void)ny; } #endif + +void cpu_sleep(bool enabled) +{ + (void)enabled; +} |