added qse_wcsatombsdup()

This commit is contained in:
2011-12-02 16:05:16 +00:00
parent f922c5858d
commit c2264998f2
15 changed files with 855 additions and 77 deletions

View File

@ -292,6 +292,7 @@
#if defined(SYS_rename)
# define QSE_RENAME(oldpath,newpath) syscall(SYS_rename,oldpath,newpath)
#else
int rename(const char *oldpath, const char *newpath); /* not to include stdio.h */
# define QSE_RENAME(oldpath,newpath) rename(oldpath,newpath)
#endif