FileStream.st
changeset 3956 51f1a9a4d63f
parent 3940 2b5888b16c68
child 3971 aad506cdc5d9
equal deleted inserted replaced
3955:ebf11ebe113e 3956:51f1a9a4d63f
    17 	category:'Streams-External'
    17 	category:'Streams-External'
    18 !
    18 !
    19 
    19 
    20 !FileStream primitiveDefinitions!
    20 !FileStream primitiveDefinitions!
    21 %{
    21 %{
    22 #ifdef __openVMS__
    22 #if defined(__openVMS__) || defined(LINUX)
       
    23   /*
       
    24    * mhmh - used in stdio ...
       
    25    * (new linuxes)
       
    26    */
    23 # undef __new
    27 # undef __new
       
    28 # define __NEED_REDEF_new__
    24 #endif
    29 #endif
    25 
    30 
    26 #include <stdio.h>
    31 #include <stdio.h>
    27 #define _STDIO_H_INCLUDED_
    32 #define _STDIO_H_INCLUDED_
       
    33 
       
    34 #ifdef __NEED_REDEF_new__
       
    35 # define __new  __STX___new
       
    36 #endif
    28 
    37 
    29 #include <errno.h>
    38 #include <errno.h>
    30 #define _ERRNO_H_INCLUDED_
    39 #define _ERRNO_H_INCLUDED_
    31 
    40 
    32 #ifdef transputer
    41 #ifdef transputer
  1067 ! !
  1076 ! !
  1068 
  1077 
  1069 !FileStream class methodsFor:'documentation'!
  1078 !FileStream class methodsFor:'documentation'!
  1070 
  1079 
  1071 version
  1080 version
  1072     ^ '$Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.59 1998-12-05 10:11:49 cg Exp $'
  1081     ^ '$Header: /cvs/stx/stx/libbasic/FileStream.st,v 1.60 1999-01-15 20:53:35 cg Exp $'
  1073 ! !
  1082 ! !
  1074 FileStream initialize!
  1083 FileStream initialize!