diff -r 30cbae46190d -r 8387cac2aba6 stage4/stage4.cc --- 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]);