diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-10-15 07:58:16 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-10-15 07:58:16 +0000 |
commit | b3438e8b680a3c992e35ff0f5518863948da2797 (patch) | |
tree | fdc55fc1df5cb56b398e8b12c2eac7120eff9e68 /uisimulator/common/stubs.c | |
parent | 0ab96fdf701656de13d560362766b67b3ce4dc18 (diff) |
added a silly stub for oscillograph to remove an #ifdef in the actual code
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2642 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'uisimulator/common/stubs.c')
-rw-r--r-- | uisimulator/common/stubs.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/uisimulator/common/stubs.c b/uisimulator/common/stubs.c index 5a8c9435dd..741d4bc977 100644 --- a/uisimulator/common/stubs.c +++ b/uisimulator/common/stubs.c @@ -194,3 +194,9 @@ int rtc_write(int address, int value) DEBUGF("write %x to address %x\n", value, address); return 0; } + +bool oscillograph(void) +{ + /* does nothing */ + return false; +} |