repo.or.cz
/
uclibc-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix regression from a745c4bfc8a9b5db4e48387170da0dc1d39e3abe
[uclibc-ng.git]
/
libc
/
stdlib
/
secure_getenv.c
blob
41cb622c820ce8845f0cdc68c97400225fd67e37
1
2
#include <stdlib.h>
3
4
char
*
secure_getenv
(
const char
*
name
) {
5
if
(
issetugid
())
return
NULL
;
6
return
getenv
(
name
);
7
}
8