Define LLONG_MAX on platforms that don't have it.

Fixes builds with x86-64.

Change-Id: I943126429eb2a428c6bd5e86272b37b0e72cb89b
diff --git a/dd.c b/dd.c
index 5dbcf9a..1e6a3a8 100644
--- a/dd.c
+++ b/dd.c
@@ -74,6 +74,10 @@
 
 #include "dd.h"
 
+#ifndef LLONG_MAX
+#define LLONG_MAX (0x7fffffffffffffffLL)
+#endif
+
 #define NO_CONV
 
 //#include "extern.h"