summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
authorFelix Arends <edx@rockbox.org>2002-10-16 16:26:11 +0000
committerFelix Arends <edx@rockbox.org>2002-10-16 16:26:11 +0000
commit12c1981728dcacf1e82d0d3c5044c6fb1b343091 (patch)
treeec513b3769ef24d1daddb48d363823b019c5e369 /apps/recorder
parent879fabdb1de9a08bb84720059e02783aa4f393c7 (diff)
downloadrockbox-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')
-rw-r--r--apps/recorder/oscillograph.c4
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 @@
17 * 17 *
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#ifndef SIMULATOR /* don't want this code in the simulator */
21
20#include <stdlib.h> 22#include <stdlib.h>
21#include <sprintf.h> 23#include <sprintf.h>
22#include "menu.h" 24#include "menu.h"
@@ -199,3 +201,5 @@ bool oscillograph(void)
199 /* standard return */ 201 /* standard return */
200 return false; 202 return false;
201} 203}
204
205#endif /* #ifndef SIMULATOR */ \ No newline at end of file