stage4/stage4.cc
changeset 210 8387cac2aba6
parent 202 da1a8186f86f
child 267 0a1204bcc9af
--- a/stage4/stage4.cc	Mon Sep 21 12:02:14 2009 +0200
+++ b/stage4/stage4.cc	Mon Sep 21 12:04:15 2009 +0200
@@ -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]);