Changeset 1964 for cpio/vendor/current/gnu/setenv.c
- Timestamp:
- Feb 3, 2017, 2:02:34 PM (8 years ago)
- 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. 4 2 This file is part of the GNU C Library. 5 3 … … 18 16 19 17 #if !_LIBC 20 # include <config.h>21 #endif22 23 18 /* Don't use __attribute__ __nonnull__ in this compilation unit. Otherwise gcc 24 19 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 26 25 27 26 #include <alloca.h> … … 51 50 52 51 #if _LIBC 53 /* This lock protects against simultaneous modifications of `environ'. */52 /* This lock protects against simultaneous modifications of 'environ'. */ 54 53 # include <bits/libc-lock.h> 55 54 __libc_lock_define_initialized (static, envlock) … … 105 104 106 105 107 /* This function is used by `setenv' and `putenv'. The difference between106 /* This function is used by 'setenv' and 'putenv'. The difference between 108 107 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' 110 109 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 never110 to reuse values once generated for a 'setenv' call since we can never 112 111 free the strings. */ 113 112 int … … 115 114 int replace) 116 115 { 117 registerchar **ep;118 registersize_t size;116 char **ep; 117 size_t size; 119 118 const size_t namelen = strlen (name); 120 119 const size_t vallen = value != NULL ? strlen (value) + 1 : 0; … … 150 149 if (new_environ == NULL) 151 150 { 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); 152 154 UNLOCK; 153 155 return -1; … … 252 254 #endif 253 255 { 254 np = malloc (namelen + 1 + vallen);256 np = (char *) malloc (namelen + 1 + vallen); 255 257 if (np == NULL) 256 258 { … … 298 300 } 299 301 300 /* The `clearenv' was planned to be added to POSIX.1 but probably302 /* The 'clearenv' was planned to be added to POSIX.1 but probably 301 303 never made it. Nevertheless the POSIX.9 standard (POSIX bindings 302 304 for Fortran 77) requires this function. */ … … 349 351 350 352 # undef setenv 353 # if !HAVE_DECL_SETENV 354 extern int setenv (const char *, const char *, int); 355 # endif 351 356 # define STREQ(a, b) (strcmp (a, b) == 0) 352 357
Note:
See TracChangeset
for help on using the changeset viewer.