summaryrefslogtreecommitdiffstats
path: root/Src/osmocom-bb/src/target/firmware/lib/printf.c
diff options
context:
space:
mode:
authorTom2011-08-16 13:04:21 +0200
committerTom2011-08-16 13:04:21 +0200
commit70205f515596a7185567283f32057c553dba2ca6 (patch)
treeee0b5c80fd20629064b74ab85f58e92ae820a730 /Src/osmocom-bb/src/target/firmware/lib/printf.c
parentneed to clean up git (diff)
downloadimsi-catcher-detection-70205f515596a7185567283f32057c553dba2ca6.tar.gz
imsi-catcher-detection-70205f515596a7185567283f32057c553dba2ca6.tar.xz
imsi-catcher-detection-70205f515596a7185567283f32057c553dba2ca6.zip
removed whole lib since compiled files were on index
Diffstat (limited to 'Src/osmocom-bb/src/target/firmware/lib/printf.c')
-rw-r--r--Src/osmocom-bb/src/target/firmware/lib/printf.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/Src/osmocom-bb/src/target/firmware/lib/printf.c b/Src/osmocom-bb/src/target/firmware/lib/printf.c
deleted file mode 100644
index a4fc687..0000000
--- a/Src/osmocom-bb/src/target/firmware/lib/printf.c
+++ /dev/null
@@ -1,19 +0,0 @@
-
-#include <stdio.h>
-#include <stdarg.h>
-
-static char printf_buffer[1024];
-
-int printf(const char *fmt, ...)
-{
- va_list args;
- int r;
-
- va_start(args, fmt);
- r = vsnprintf(printf_buffer, sizeof(printf_buffer), fmt, args);
- va_end(args);
-
- puts(printf_buffer);
-
- return r;
-}