From: <dan...@us...> - 2007-12-23 11:43:17
|
Revision: 1100 http://cegcc.svn.sourceforge.net/cegcc/?rev=1100&view=rev Author: dannybackx Date: 2007-12-23 03:42:46 -0800 (Sun, 23 Dec 2007) Log Message: ----------- Add declaration as suggested by Pavel Modified Paths: -------------- trunk/cegcc/src/newlib/ChangeLog.cegcc trunk/cegcc/src/newlib/newlib/libc/sys/wince/sys/dirent.h Modified: trunk/cegcc/src/newlib/ChangeLog.cegcc =================================================================== --- trunk/cegcc/src/newlib/ChangeLog.cegcc 2007-12-21 15:12:40 UTC (rev 1099) +++ trunk/cegcc/src/newlib/ChangeLog.cegcc 2007-12-23 11:42:46 UTC (rev 1100) @@ -1,5 +1,9 @@ -2007-06-20 Danny Backx <dan...@us...> +2007-12-23 Pavel Chernikov <pch...@gm...> + * newlib/libc/sys/wince/sys/dirent.h (readdir_r) : Add declaration. + +2007-06-20 Danny Backx <dan...@us...> + * newlib/libc/sys/wince/startup.c (_eh_handler) : Add code to call new function _Wince_Log instead of printf statements that often go nowhere. @@ -11,7 +15,7 @@ wants _Wince_Log to put its output. * newlib/libc/sys/wince/startup.h : New file to declare _Wince_Log. -2006-12-29 Danny Backx <dan...@us...> +2006-12-29 Danny Backx <dan...@us...> * newlib/libc/sys/wince/startup.c : Call ExitProcess instead of TerminateProcess. Modified: trunk/cegcc/src/newlib/newlib/libc/sys/wince/sys/dirent.h =================================================================== --- trunk/cegcc/src/newlib/newlib/libc/sys/wince/sys/dirent.h 2007-12-21 15:12:40 UTC (rev 1099) +++ trunk/cegcc/src/newlib/newlib/libc/sys/wince/sys/dirent.h 2007-12-23 11:42:46 UTC (rev 1100) @@ -36,6 +36,8 @@ extern void rewinddir(DIR *dir); extern int closedir(DIR *dir); +extern int readdir_r(DIR *dirp, struct dirent *entry, struct dirent **result); + #ifdef __cplusplus }; #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |