Changeset 792
- Timestamp:
- Oct 2, 2003, 3:22:00 AM (22 years ago)
- Location:
- trunk/src/emx/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/stdio.h
-
Property cvs2svn:cvs-rev
changed from
1.6
to1.7
r791 r792 52 52 typedef __off_t fpos_t; 53 53 54 #if ndef _SIZE_T_DECLARED54 #if !defined(_SIZE_T_DECLARED) && !defined(_SIZE_T) /* bird: emx */ 55 55 typedef __size_t size_t; 56 56 #define _SIZE_T_DECLARED … … 59 59 60 60 #if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE 61 #if ndef _VA_LIST_DECLARED61 #if !defined(_VA_LIST_DECLARED) && !defined(_VA_LIST) /* bird: emx */ 62 62 typedef __va_list va_list; 63 63 #define _VA_LIST_DECLARED … … 70 70 #endif 71 71 72 #if 0 /* bird: emx */ 73 72 74 #define _FSTDIO /* Define for new stdio with functions. */ 73 75 74 #if 0 /* bird: emx */75 76 76 77 /* -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/sys/stat.h
-
Property cvs2svn:cvs-rev
changed from
1.5
to1.6
r791 r792 63 63 #endif 64 64 65 #if !defined(_GID_T_DECLARED) && !defined(_GID_T) 65 #if !defined(_GID_T_DECLARED) && !defined(_GID_T) /* bird: emx */ 66 66 typedef __gid_t gid_t; 67 67 #define _GID_T_DECLARED 68 #define _GID_T 68 #define _GID_T /* bird: emx */ 69 69 #endif 70 70 … … 334 334 /** @todo int chflags(const char *, unsigned long); */ 335 335 #endif 336 /** @todo int chmod(const char *, mode_t); */ 336 int chmod(const char *, mode_t); 337 337 #if __BSD_VISIBLE 338 338 /** @todo int fchflags(int, unsigned long); */ … … 342 342 #if __BSD_VISIBLE 343 343 /** @todo int lchflags(const char *, int); */ 344 /** @todo int lchmod(const char *, mode_t); */ 344 int lchmod(const char *, mode_t); 345 345 #endif 346 346 #if __POSIX_VISIBLE >= 200112 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.