mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-13 13:40:36 +02:00
40efe09d28
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15439 3c298f89-4303-0410-b956-a3cf2f4a3e73
17 lines
192 B
C
17 lines
192 B
C
#include <stdlib.h>
|
|
|
|
int nvram_set(const char *name, const char *value)
|
|
{
|
|
return -1;
|
|
}
|
|
|
|
char *nvram_get(const char *name)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
int nvram_unset(const char *name)
|
|
{
|
|
return -1;
|
|
}
|