Changeset 164 for sources/dool.diff

Show
Ignore:
Timestamp:
11/22/06 00:52:43 (2 years ago)
Author:
Gregor
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • sources/dool.diff

    r53 r164  
    1010Index: dool/System.d 
    1111=================================================================== 
    12 --- dool/System.d   (revision 90
     12--- dool/System.d   (revision 98
    1313+++ dool/System.d   (working copy) 
    1414@@ -182,7 +182,7 @@ 
     
    3030                { 
    3131                    //FPUTWC('\n', fp); 
     32Index: dool/io/OutBuffer.d 
     33=================================================================== 
     34--- dool/io/OutBuffer.d (revision 98) 
     35+++ dool/io/OutBuffer.d (working copy) 
     36@@ -37,6 +37,16 @@ 
     37 private import dool.String; 
     38 private import dool.system.stdlib; 
     39  
     40+ 
     41+// alloca doesn't work with GDC 
     42+version (GNU) 
     43+{ 
     44+    void* alloca(size_t sz) 
     45+    { 
     46+        return new void[sz]; 
     47+    } 
     48+} 
     49+ 
     50 /** 
     51 * OutBuffer provides a way to build up an array of bytes out 
     52 * of raw data. It is useful for things like preparing an 
    3253Index: dool/io/Stream.d 
    3354=================================================================== 
    34 --- dool/io/Stream.d    (revision 90
     55--- dool/io/Stream.d    (revision 98
    3556+++ dool/io/Stream.d    (working copy) 
    3657@@ -450,7 +450,7 @@