From: Sebastien Bourdeauducq Date: Fri, 25 May 2012 20:50:30 +0000 (+0200) Subject: software/libbase: provide getenv declaration X-Git-Tag: 24jan2021_ls180~3161 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0b99cbf7b9ee0801805bc113e71a23ed9ec6ca89;p=litex.git software/libbase: provide getenv declaration --- diff --git a/software/include/base/stdlib.h b/software/include/base/stdlib.h index 7d2e2508..a31093ad 100644 --- a/software/include/base/stdlib.h +++ b/software/include/base/stdlib.h @@ -52,4 +52,10 @@ unsigned int rand(void); void srand(unsigned int seed); void abort(void); +/* + * The following functions are not provided by this library. + */ + +char *getenv(const char *name); + #endif /* __STDLIB_H */