ObjectMemory.st
changeset 14721 8fb5b324ee12
parent 14699 a80577551b86
child 15011 c34a4f4a216f
child 18017 7fef9e17913f
--- a/ObjectMemory.st	Sat Jan 26 16:04:17 2013 +0100
+++ b/ObjectMemory.st	Sat Jan 26 22:42:14 2013 +0100
@@ -3059,9 +3059,9 @@
      The default is zero."
 
 %{  /* NOCONTEXT */
-    extern unsigned __maxOldSpace();
-
-    RETURN (__MKUINT( __maxOldSpace((unsigned int)-1) ));
+    extern unsigned INT __maxOldSpace();
+
+    RETURN (__MKUINT( __maxOldSpace((unsigned INT)-1) ));
 %}.
     ^ 0
     "
@@ -3082,7 +3082,7 @@
 
     |result|
 %{
-    extern unsigned __maxOldSpace();
+    extern unsigned INT __maxOldSpace();
 
     if (__isInteger(amount)) {
 	result = __MKUINT( __maxOldSpace(__unsignedLongIntVal(amount)));
@@ -5514,7 +5514,7 @@
 !ObjectMemory class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/ObjectMemory.st,v 1.265 2013-01-24 15:13:23 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ObjectMemory.st,v 1.266 2013-01-26 21:42:14 cg Exp $'
 !
 
 version_SVN