1
0
Fork 0
forked from len0rd/rockbox

remove the ifdef for simulator

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3616 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2003-04-25 13:35:31 +00:00
parent 8fd7828148
commit 2723531ff3

View file

@ -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