summaryrefslogtreecommitdiff
path: root/dprom.c
diff options
context:
space:
mode:
Diffstat (limited to 'dprom.c')
-rw-r--r--dprom.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/dprom.c b/dprom.c
new file mode 100644
index 0000000..c5d1f58
--- /dev/null
+++ b/dprom.c
@@ -0,0 +1,10 @@
+#include <u.h>
+#include <libc.h>
+
+void
+main()
+{
+ if(0.00001 > 0) print("ok\n");
+ else print("ko\n");
+ exits(0);
+}