summaryrefslogtreecommitdiff
path: root/rts/RtsUtils.h
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2010-04-21 16:23:36 +0000
committerIan Lynagh <igloo@earth.li>2010-04-21 16:23:36 +0000
commit81c95f7d9854521a568179bb19199299835b7a53 (patch)
tree148e2833ad3112356c87f0b9286032484d587181 /rts/RtsUtils.h
parent7dbc1d8f8fb650162e01f6eab8dabaf1f53c819d (diff)
downloadhaskell-81c95f7d9854521a568179bb19199299835b7a53.tar.gz
Use StgWord64 instead of ullong
This patch also fixes ullong_format_string (renamed to showStgWord64) so that it works with values outside the 32bit range (trac #3979), and simplifies the without-commas case.
Diffstat (limited to 'rts/RtsUtils.h')
-rw-r--r--rts/RtsUtils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsUtils.h b/rts/RtsUtils.h
index e47dbb9110..909e243b7a 100644
--- a/rts/RtsUtils.h
+++ b/rts/RtsUtils.h
@@ -35,7 +35,7 @@ void stgFree(void* p);
void heapOverflow(void);
char *time_str(void);
-char *ullong_format_string(ullong, char *, rtsBool);
+char *showStgWord64(StgWord64, char *, rtsBool);
#ifdef DEBUG
void heapCheckFail( void );