[MLton-commit] r6679
Wesley Terpstra
wesley at mlton.org
Wed Jul 30 17:31:27 PDT 2008
It seems that _init isn't always internal. The others might not be either.
----------------------------------------------------------------------
U mlton/trunk/runtime/platform/getText.c
----------------------------------------------------------------------
Modified: mlton/trunk/runtime/platform/getText.c
===================================================================
--- mlton/trunk/runtime/platform/getText.c 2008-07-30 08:22:41 UTC (rev 6678)
+++ mlton/trunk/runtime/platform/getText.c 2008-07-31 00:31:08 UTC (rev 6679)
@@ -1,10 +1,10 @@
/* To get the beginning and end of the text segment. */
#if defined(PIC)
-INTERNAL extern unsigned char _init;
+extern unsigned char _init;
#else
-INTERNAL extern unsigned char _start;
+extern unsigned char _start;
#endif
-INTERNAL extern unsigned char etext;
+extern unsigned char etext;
code_pointer GC_getTextStart (void) {
#if defined(PIC)
More information about the MLton-commit
mailing list