Changeset 829 in Sophya for trunk/SophyaLib/HiStats
- Timestamp:
- Apr 6, 2000, 6:58:45 PM (25 years ago)
- Location:
- trunk/SophyaLib/HiStats
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/HiStats/xntuple.cc
r763 r829 145 145 // deja swappe ? 146 146 if( blk->swoff >= 0 ) return ; 147 fseek(swf, (off_t)0, SEEK_END) ;147 fseek(swf, 0, SEEK_END) ; 148 148 // position debut du bloc 149 149 blk->swoff = ftell(swf) ; … … 931 931 template class ObjFileIO<XNTuple>; 932 932 #endif 933 934 935 // Bricolo Dominique Yvon pour faire marcher sur Mac 936 #ifdef __MWERKS__ 937 static long mktempMemory=0; 938 char * mktemp(char * Filename) 939 { sprintf(Filename,"TempFile%8i",mktempMemory); 940 mktempMemory++; 941 return Filename; 942 } 943 #endif -
trunk/SophyaLib/HiStats/xntuple.h
r763 r829 17 17 #include <map> 18 18 19 #ifdef __MWERKS__ 20 #include <stdio.h> 21 #include <stdlib.h> 22 char * mktemp(char * Filename); 23 #endif 24 19 25 #include "ntupintf.h" 20 26 #include "ppersist.h" 21 27 #include "dvlist.h" 28 29 22 30 23 31 namespace SOPHYA { … … 158 166 // Classe pour la gestion de persistance 159 167 // ObjFileIO<XNTuple> 160 161 168 162 169 } // namespace SOPHYA 163 170
Note:
See TracChangeset
for help on using the changeset viewer.