Changeset 2199 for trunk


Ignore:
Timestamp:
Jul 3, 2005, 12:44:36 PM (20 years ago)
Author:
bird
Message:

Updated argz.h because of bustage caused by new cdefs.h (THROW).

Location:
trunk/src/emx
Files:
2 edited

Legend:

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

    • Property cvs2svn:cvs-rev changed from 1.95 to 1.96
    r2198 r2199  
    2323        o Ported from GLIBC 2.3.x CVS.
    2424        o Fixed some waitid() and waitpid() problems related to stopping and resuming children.
     25        o Updated argz.h because of bustage caused by new cdefs.h (THROW).
    2526    - libcrypt:
    2627        o Created stub library.
  • trunk/src/emx/include/argz.h

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r2198 r2199  
    1 /* argz.h,v 1.3 2004/09/14 22:27:31 bird Exp */
    2 /** @file
    3  * GLIBC v2.3.2
    4  */
    5 
    61/* Routines for dealing with '\0' separated arg vectors.
    7    Copyright (C) 1995, 96, 97, 98, 99, 2000 Free Software Foundation, Inc.
     2   Copyright (C) 1995,96,97,98,99,2000,2004 Free Software Foundation, Inc.
    83   This file is part of the GNU C Library.
    94
     
    2318   02111-1307 USA.  */
    2419
     20/** @file
     21 * GLIBC v2.3.x CVS
     22 */
    2523
    2624#ifndef _ARGZ_H
     
    169167#ifdef __USE_EXTERN_INLINES
    170168extern inline char *
    171 __argz_next (__const char *__argz, size_t __argz_len,
    172              __const char *__entry) __THROW
     169__NTH (__argz_next (__const char *__argz, size_t __argz_len,
     170                    __const char *__entry))
    173171{
    174172  if (__entry)
     
    183181}
    184182extern inline char *
    185 argz_next (__const char *__argz, size_t __argz_len,
    186            __const char *__entry) __THROW
     183__NTH (argz_next (__const char *__argz, size_t __argz_len,
     184                  __const char *__entry))
    187185{
    188186  return __argz_next (__argz, __argz_len, __entry);
Note: See TracChangeset for help on using the changeset viewer.