diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 13:35:31 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2003-04-25 13:35:31 +0000 |
| commit | 2723531ff3168f566b4e16f7d6f2981a63c9da6a (patch) | |
| tree | 5d552e9f200d623f6d599d8c32c9bc7a306aacc7 | |
| parent | 8fd782814846075b50928af1db66bf4ac0bcd018 (diff) | |
| download | rockbox-2723531ff3168f566b4e16f7d6f2981a63c9da6a.zip rockbox-2723531ff3168f566b4e16f7d6f2981a63c9da6a.tar.gz rockbox-2723531ff3168f566b4e16f7d6f2981a63c9da6a.tar.bz2 rockbox-2723531ff3168f566b4e16f7d6f2981a63c9da6a.tar.xz | |
remove the ifdef for simulator
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3616 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/common/sprintf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/firmware/common/sprintf.c b/firmware/common/sprintf.c index e72648c..5dd86b7 100644 --- a/firmware/common/sprintf.c +++ b/firmware/common/sprintf.c @@ -175,8 +175,6 @@ int vsnprintf(char *buf, int size, const char *fmt, va_list ap) return pr.bytes; } -#ifndef SIMULATOR - struct for_fprintf { int fd; /* where to store it */ int bytes; /* amount stored */ @@ -211,4 +209,4 @@ int fprintf(int fd, const char *fmt, ...) return fpr.bytes; /* return 0 on error */ } -#endif + |