Ignore:
Timestamp:
Feb 3, 2017, 2:02:34 PM (8 years ago)
Author:
Silvan Scherrer
Message:

cpio: update vendor to version 2.12

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified cpio/vendor/current/gnu/setenv.c

    r118 r1964  
    1 /* -*- buffer-read-only: t -*- vi: set ro: */
    2 /* DO NOT EDIT! GENERATED AUTOMATICALLY! */
    3 /* Copyright (C) 1992, 1995-2003, 2005-2010 Free Software Foundation, Inc.
     1/* Copyright (C) 1992, 1995-2003, 2005-2015 Free Software Foundation, Inc.
    42   This file is part of the GNU C Library.
    53
     
    1816
    1917#if !_LIBC
    20 # include <config.h>
    21 #endif
    22 
    2318/* Don't use __attribute__ __nonnull__ in this compilation unit.  Otherwise gcc
    2419   optimizes away the name == NULL test below.  */
    25 #define _GL_ARG_NONNULL(params)
     20# define _GL_ARG_NONNULL(params)
     21
     22# define _GL_USE_STDLIB_ALLOC 1
     23# include <config.h>
     24#endif
    2625
    2726#include <alloca.h>
     
    5150
    5251#if _LIBC
    53 /* This lock protects against simultaneous modifications of `environ'.  */
     52/* This lock protects against simultaneous modifications of 'environ'.  */
    5453# include <bits/libc-lock.h>
    5554__libc_lock_define_initialized (static, envlock)
     
    105104
    106105
    107 /* This function is used by `setenv' and `putenv'.  The difference between
     106/* This function is used by 'setenv' and 'putenv'.  The difference between
    108107   the two functions is that for the former must create a new string which
    109    is then placed in the environment, while the argument of `putenv'
     108   is then placed in the environment, while the argument of 'putenv'
    110109   must be used directly.  This is all complicated by the fact that we try
    111    to reuse values once generated for a `setenv' call since we can never
     110   to reuse values once generated for a 'setenv' call since we can never
    112111   free the strings.  */
    113112int
     
    115114                  int replace)
    116115{
    117   register char **ep;
    118   register size_t size;
     116  char **ep;
     117  size_t size;
    119118  const size_t namelen = strlen (name);
    120119  const size_t vallen = value != NULL ? strlen (value) + 1 : 0;
     
    150149      if (new_environ == NULL)
    151150        {
     151          /* It's easier to set errno to ENOMEM than to rely on the
     152             'malloc-posix' and 'realloc-posix' gnulib modules.  */
     153          __set_errno (ENOMEM);
    152154          UNLOCK;
    153155          return -1;
     
    252254#endif
    253255            {
    254               np = malloc (namelen + 1 + vallen);
     256              np = (char *) malloc (namelen + 1 + vallen);
    255257              if (np == NULL)
    256258                {
     
    298300}
    299301
    300 /* The `clearenv' was planned to be added to POSIX.1 but probably
     302/* The 'clearenv' was planned to be added to POSIX.1 but probably
    301303   never made it.  Nevertheless the POSIX.9 standard (POSIX bindings
    302304   for Fortran 77) requires this function.  */
     
    349351
    350352# undef setenv
     353# if !HAVE_DECL_SETENV
     354extern int setenv (const char *, const char *, int);
     355# endif
    351356# define STREQ(a, b) (strcmp (a, b) == 0)
    352357
Note: See TracChangeset for help on using the changeset viewer.