Changeset 2178 for trunk


Ignore:
Timestamp:
Jul 3, 2005, 6:58:20 AM (20 years ago)
Author:
bird
Message:

sys/fcntl.h shall include sys/stat.h in XSI mode.

Location:
trunk/src/emx
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/ChangeLog.LIBC

    • Property cvs2svn:cvs-rev changed from 1.89 to 1.90
    r2177 r2178  
    1616        o Fixed a buffer size validation bug in the backend for getcwd and
    1717          friends. Was requiring a byte to much.
    18         o Updated some TCPIP headers with GLIBC __USE_MISC #includes.
     18        o Updated some TCPIP headers with GLIBC __USE_MISC #includes. (more to go)
     19        o sys/fcntl.h shall include sys/stat.h in XSI mode.
    1920
    20212005-07-01: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • trunk/src/emx/include/sys/fcntl.h

    • Property cvs2svn:cvs-rev changed from 1.7 to 1.8
    r2177 r2178  
    66 * @changed bird: Removed (non KERNEL) stuff we don't implement and added
    77 *          EMX specific stuff.
     8 * @changed bird: Added sys/stat.h if in XSI mode.
    89 * @todo    Consider implementing the flags and commands we don't currently
    910 *          include.
     
    6465#include <sys/cdefs.h>
    6566#include <sys/_types.h>
     67#if __XSI_VISIBLE       /* bird */
     68#include <sys/stat.h>   /* bird */
     69#endif                  /* bird */
    6670
    6771#if !defined(_MODE_T_DECLARED) && !defined(_MODE_T)                             /* bird: EMX */
Note: See TracChangeset for help on using the changeset viewer.