comparison packages/language/c/libc/stdio/current/src/common/fopen.cxx @ 134:d2f49caf9e38 ecos-sw-2000-11-03

Merge from eCos master repository on 2000-11-03-09:00:49-GMT
author jlarmour
date Fri, 03 Nov 2000 21:17:40 +0000
parents 6ed91473a1cd
children e0c0827131d1
comparison
equal deleted inserted replaced
133:98d71f4d8243 134:d2f49caf9e38
240 240
241 // Do a null seek to initialize the file position. 241 // Do a null seek to initialize the file position.
242 Cyg_StdioStream *real_stream = (Cyg_StdioStream *)f; 242 Cyg_StdioStream *real_stream = (Cyg_StdioStream *)f;
243 fpos_t pos = 0; 243 fpos_t pos = 0;
244 real_stream->set_position( pos, SEEK_CUR ); 244 real_stream->set_position( pos, SEEK_CUR );
245 return f;
245 } 246 }
246 247
247 #endif // def CYGPKG_LIBC_STDIO_FILEIO 248 #endif // def CYGPKG_LIBC_STDIO_FILEIO
248 249
249 250