stage4/stage4.cc
changeset 258 d7d92b2f87e9
parent 210 8387cac2aba6
child 267 0a1204bcc9af
--- a/stage4/stage4.cc	Wed Mar 30 19:53:32 2011 +0100
+++ b/stage4/stage4.cc	Thu Mar 31 10:45:34 2011 +0100
@@ -107,6 +107,16 @@
   return NULL;
 }
 
+void *stage4out_c::print_long_integer(unsigned long l_integer) {
+  *out << l_integer << "UL";
+  return NULL;
+}
+
+void *stage4out_c::print_long_long_integer(unsigned long long ll_integer) {
+  *out << ll_integer << "ULL";
+  return NULL;
+}
+
 void *stage4out_c::printupper(const char *str) {
   for (int i = 0; str[i] != '\0'; i++)
     *out << (unsigned char)toupper(str[i]);