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.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/stdio/64bit.c b/test/stdio/64bit.c
new file mode 100644
index 000000000..15ad3f8b2
--- /dev/null
+++ b/test/stdio/64bit.c
@@ -0,0 +1,8 @@
+#include <stdio.h>
+
+int main(void)
+{
+ void *ptr = (void *)-1;
+ printf("%p\n", ptr);
+ return 0;
+}