Changeset 3594 for trunk/kStuff/kHlp/Bare/kHlpBareEnv.c
- Timestamp:
- Oct 2, 2007, 11:35:22 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/kStuff/kHlp/Bare/kHlpBareEnv.c ¶
r3575 r3594 32 32 #include <k/kErrors.h> 33 33 34 #if K_OS == K_OS_OS2 34 #if K_OS == K_OS_DARWIN 35 36 #elif K_OS == K_OS_OS2 35 37 # define INCL_BASE 36 38 # define INCL_ERRORS 37 39 # include <os2.h> 40 38 41 #elif K_OS == K_OS_WINDOWS 39 42 # include <Windows.h> 43 40 44 #else 41 45 # error "port me" … … 45 49 KHLP_DECL(int) kHlpGetEnv(const char *pszVar, char *pszVal, KSIZE cchVal) 46 50 { 47 #if K_OS == K_OS_OS2 51 #if K_OS == K_OS_DARWIN 52 /** @todo need to figure out where the stuff is or how it's inherited on darwin ... */ 53 return KERR_ENVVAR_NOT_FOUND; 54 55 #elif K_OS == K_OS_OS2 48 56 PSZ pszValue = NULL; 49 57 int rc;
Note:
See TracChangeset
for help on using the changeset viewer.