Changeset 51 for trunk/src/kmk/helpers.c
- Timestamp:
- Apr 7, 2003, 3:30:32 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/helpers.c
r35 r51 18 18 #include <sys/stat.h> 19 19 #include <stdarg.h> 20 #include <stdio.h> 21 #include <err.h> 22 20 23 #ifdef OS2 21 24 #define INCL_BASE 22 25 #include <os2.h> 23 26 #endif 24 #include <stdio.h>25 #include <err.h>26 27 27 28 … … 34 35 char *realpath(const char *pszFileName, char *pszResolvedName) 35 36 { 36 #if 0 //def USE_KLIB //@todo37 #ifdef USE_KLIB 37 38 if (kPathCanonifyEx(pszFileName, NULL, '/', '/', pszResolvedName, KFILE_LENGTH)) 38 39 if (kPathExist(pszFileName)) … … 51 52 52 53 #ifdef OS2 53 void 54 void err(int flags, const char *pszFormat, ...) 54 55 { 55 56 va_list args; … … 60 61 } 61 62 62 void 63 void errx(int flags, const char *pszFormat, ...) 63 64 { 64 65 va_list args; … … 69 70 } 70 71 71 void 72 void warnx(const char *pszFormat, ...) 72 73 { 73 74 va_list args; … … 78 79 } 79 80 80 void 81 void warn(const char *pszFormat, ...) 81 82 { 82 83 va_list args;
Note:
See TracChangeset
for help on using the changeset viewer.