diff options
author | Felix Arends <edx@rockbox.org> | 2002-10-16 16:26:11 +0000 |
---|---|---|
committer | Felix Arends <edx@rockbox.org> | 2002-10-16 16:26:11 +0000 |
commit | 12c1981728dcacf1e82d0d3c5044c6fb1b343091 (patch) | |
tree | ec513b3769ef24d1daddb48d363823b019c5e369 /apps/recorder/oscillograph.c | |
parent | 879fabdb1de9a08bb84720059e02783aa4f393c7 (diff) | |
download | rockbox-12c1981728dcacf1e82d0d3c5044c6fb1b343091.tar.gz rockbox-12c1981728dcacf1e82d0d3c5044c6fb1b343091.zip |
don't compile on the simulator
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2686 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/oscillograph.c')
-rw-r--r-- | apps/recorder/oscillograph.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/recorder/oscillograph.c b/apps/recorder/oscillograph.c index 25ae10f01b..7b91ed18e9 100644 --- a/apps/recorder/oscillograph.c +++ b/apps/recorder/oscillograph.c @@ -17,6 +17,8 @@ * ****************************************************************************/ +#ifndef SIMULATOR /* don't want this code in the simulator */ + #include <stdlib.h> #include <sprintf.h> #include "menu.h" @@ -199,3 +201,5 @@ bool oscillograph(void) /* standard return */ return false; } + +#endif /* #ifndef SIMULATOR */
\ No newline at end of file |