summaryrefslogtreecommitdiff
path: root/test/stdio/64bit.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/stdio/64bit.c')
-rw-r--r--test/stdio/64bit.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/stdio/64bit.c b/test/stdio/64bit.c
deleted file mode 100644
index 9b94dd86c..000000000
--- a/test/stdio/64bit.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdio.h>
-
-int main(void)
-{
- unsigned long long val = -1;
- void *ptr = (void *)-1;
- printf("%p\n", ptr);
-
- sscanf("123456789", "%Lx", &val);
- printf("val = %Lx\n", val);
- return 0;
-}