Changeset 2123


Ignore:
Timestamp:
Jul 1, 2005, 3:49:17 AM (20 years ago)
Author:
bird
Message:

o Added REG_NOERROR to regex.h to make GLIBC code happy.

Location:
trunk/src/emx
Files:
2 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.78 to 1.79
    r2122 r2123  
    66        o Renamed struct _FILE to struct __sFILE to match BSD.
    77        o Added wait.h for GLIBC compatability, content is #include <sys/wait.h>.
     8        o Added _D_EXACT_NAMLEN and _D_ALLOC_NAMLEN macros to sys/dirent.h to
     9          make GLIBC code happy.
     10        o Added REG_NOERROR to regex.h to make GLIBC code happy.
    811
    9122005-06-29: knut st. osmundsen <bird-gccos2-spam@anduin.net>
  • trunk/src/emx/include/regex.h

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2122 r2123  
    22/** @file
    33 * FreeBSD 5.3
     4 * @changed bird: Added REG_NOMATCH.
    45 */
    56/*-
     
    8283/* regerror() flags */
    8384#define REG_ENOSYS      (-1)
     85#if !defined(REG_NOMATCH) && __USE_GNU  /* bird */
     86#define REG_NOERROR      0              /* bird */
     87#endif                                  /* bird */
    8488#define REG_NOMATCH      1
    8589#define REG_BADPAT       2
Note: See TracChangeset for help on using the changeset viewer.