Changeset 792


Ignore:
Timestamp:
Oct 2, 2003, 3:22:00 AM (22 years ago)
Author:
bird
Message:

Fixed a couple of errors in the migration.

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 to 1.7
    r791 r792  
    5252typedef __off_t         fpos_t;
    5353
    54 #ifndef _SIZE_T_DECLARED
     54#if !defined(_SIZE_T_DECLARED) && !defined(_SIZE_T) /* bird: emx */
    5555typedef __size_t        size_t;
    5656#define _SIZE_T_DECLARED
     
    5959
    6060#if __BSD_VISIBLE || __POSIX_VISIBLE >= 200112 || __XSI_VISIBLE
    61 #ifndef _VA_LIST_DECLARED
     61#if !defined(_VA_LIST_DECLARED) && !defined(_VA_LIST) /* bird: emx */
    6262typedef __va_list       va_list;
    6363#define _VA_LIST_DECLARED
     
    7070#endif
    7171
     72#if 0                                   /* bird: emx */
     73
    7274#define _FSTDIO                 /* Define for new stdio with functions. */
    7375
    74 #if 0                                   /* bird: emx */
    7576
    7677/*
  • trunk/src/emx/include/sys/stat.h

    • Property cvs2svn:cvs-rev changed from 1.5 to 1.6
    r791 r792  
    6363#endif
    6464
    65 #if !defined(_GID_T_DECLARED) && !defined(_GID_T)
     65#if !defined(_GID_T_DECLARED) && !defined(_GID_T) /* bird: emx */
    6666typedef __gid_t         gid_t;
    6767#define _GID_T_DECLARED
    68 #define _GID_T
     68#define _GID_T                          /* bird: emx */
    6969#endif
    7070
     
    334334/** @todo int   chflags(const char *, unsigned long); */
    335335#endif
    336 /** @todo int   chmod(const char *, mode_t); */
     336int     chmod(const char *, mode_t);
    337337#if __BSD_VISIBLE
    338338/** @todo int   fchflags(int, unsigned long); */
     
    342342#if __BSD_VISIBLE
    343343/** @todo int   lchflags(const char *, int); */
    344 /** @todo int   lchmod(const char *, mode_t); */
     344int     lchmod(const char *, mode_t);
    345345#endif
    346346#if __POSIX_VISIBLE >= 200112
Note: See TracChangeset for help on using the changeset viewer.