diff options
author | Rich Felker <dalias@aerifal.cx> | 2018-09-11 15:10:01 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-09-12 14:34:37 -0400 |
commit | c04c6993dc87d596e47f2d8a66ef9252890b7468 (patch) | |
tree | 8f7cd79408b8e6543e6483c943800bb4f88b41e5 /src | |
parent | 239c15565fe174a77cdd0a8226863a1da1880857 (diff) | |
download | musl-c04c6993dc87d596e47f2d8a66ef9252890b7468.tar.gz musl-c04c6993dc87d596e47f2d8a66ef9252890b7468.tar.xz musl-c04c6993dc87d596e47f2d8a66ef9252890b7468.zip |
declare __env_rm_add in wrapper stdlib.h
this is perhaps not the ideal place, but no better alternatives stand out.
Diffstat (limited to 'src')
-rw-r--r-- | src/include/stdlib.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/stdlib.h b/src/include/stdlib.h index 6e0dbda9..8b8fe9c8 100644 --- a/src/include/stdlib.h +++ b/src/include/stdlib.h @@ -4,6 +4,7 @@ #include "../../include/stdlib.h" int __putenv(char *, size_t, char *); +void __env_rm_add(char *, char *); int __mkostemps(char *, int, int); int __ptsname_r(int, char *, size_t); char *__randname(char *); |