X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/53d85a8fa1c1b98cb79c40712d1668731bdcaf49..9fe4507c03c26715b532b4ceb1f46e8198ecd4c9:/client/loclass/fileutils.c diff --git a/client/loclass/fileutils.c b/client/loclass/fileutils.c index 4079dccf..e5e5c5b0 100644 --- a/client/loclass/fileutils.c +++ b/client/loclass/fileutils.c @@ -35,6 +35,7 @@ * * ****************************************************************************/ +#ifndef ON_DEVICE #include #include @@ -108,3 +109,10 @@ void prnlog(char *fmt, ...) PrintAndLog(buffer); } +#else //if we're on ARM +void prnlog(char *fmt,...) +{ + return; +} + +#endif