naspro
view src/core/posix/env.c @ 160:60edbe170fed
Umph.. the usual bad commit :-(
| author | Stefano D'Angelo <zanga.mail@gmail.com> |
|---|---|
| date | Sat Jul 18 19:45:19 2009 +0200 (2009-07-18) |
| parents | |
| children |
line source
1 /*
2 * NASPRO - NASPRO Architecture for Sound Processing
3 * Core library
4 *
5 * Copyright (C) 2007-2009 Stefano D'Angelo <zanga.mail@gmail.com>
6 *
7 * See the COPYING file for license conditions.
8 */
10 #include <stdlib.h>
12 #include <NASPRO/core/lib.h>
14 char *
15 nacore_env_get_var(const char *name)
16 {
17 return getenv(name);
18 }
20 void
21 nacore_env_free_var_value(char *value)
22 {
23 }
