Get a value from the current environment */
| 274 | |
| 275 | /* Get a value from the current environment */ |
| 276 | char *getenv (const char *varname) |
| 277 | { |
| 278 | // |
| 279 | // Null getenv() function implementation to satisfy the linker, since there is |
| 280 | // no direct functionality logic dependency in present UEFI cases. |
| 281 | // |
| 282 | return NULL; |
| 283 | } |
| 284 | |
| 285 | // |
| 286 | // -- Stream I/O Routines -- |
no outgoing calls