comparison compat.c @ 22:6a246b3bb14f

Added tree widgets, fixed some delete event processing, fixed a layout bug on OS/2 and Win32. Added another function to compat to deal with MSVC runtime library conflicts.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Thu, 02 Aug 2001 09:57:21 +0000
parents 67a643a734d9
children 432c39a4ff86
comparison
equal deleted inserted replaced
21:c6e76b796b28 22:6a246b3bb14f
375 char *fsgets(char *str, int size, FILE *stream) 375 char *fsgets(char *str, int size, FILE *stream)
376 { 376 {
377 return fgets(str, size, stream); 377 return fgets(str, size, stream);
378 } 378 }
379 379
380 int fsseek(FILE *stream, long offset, int whence)
381 {
382 return fseek(stream, offset, whence);
383 }