Changeset 789
- Timestamp:
- Oct 2, 2003, 3:16:45 AM (22 years ago)
- Location:
- trunk/src/emx/src/lib
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/lib/app/unsetenv.c
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r788 r789 11 11 */ 12 12 13 13 14 14 #include "libc-alias.h" 15 15 #include <stdlib.h> … … 18 18 #include <emx/startup.h> 19 19 20 21 20 21 22 22 /** 23 23 * Delete environment variable. … … 60 60 /* next */ 61 61 p++; 62 } 62 } 63 63 } 64 64 return 0; -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/io/chmod.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r788 r789 8 8 #include <emx/syscalls.h> 9 9 10 int _STD(chmod) (const char *name, int pmode)10 int _STD(chmod) (const char *name, mode_t mode) 11 11 { 12 12 int attr, rc; … … 15 15 if (attr < 0) 16 16 return -1; 17 if ( pmode & S_IWRITE)17 if (mode & S_IWRITE) 18 18 attr &= ~1; 19 19 else -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/str/memicmp.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r788 r789 14 14 #include <sys/locale.h> 15 15 #include <stddef.h> 16 #include <string.h> 16 17 17 18 int _STD(memicmp) (const void *m1, const void *m2, size_t len) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/str/strlwr.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r788 r789 13 13 #include "libc-alias.h" 14 14 #include <sys/locale.h> 15 #include <string.h> 15 16 16 17 static int __uni_strlwr (UniChar *ucs, void *arg) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/str/strnicmp.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r788 r789 15 15 #include <stddef.h> 16 16 #include <sys/locale.h> 17 #include <string.h> 17 18 18 19 int _STD(strnicmp) (__const__ char *s1, __const__ char *s2, size_t len) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/str/strupr.c
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r788 r789 13 13 #include "libc-alias.h" 14 14 #include <sys/locale.h> 15 #include <string.h> 15 16 16 17 static int __uni_strupr (UniChar *ucs, void *arg) -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/src/lib/str/strxfrm.c
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r788 r789 16 16 #include <sys/locale.h> 17 17 #include <stddef.h> 18 #include <string.h> 18 19 19 20 struct __strxfrm_arg -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.