mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-01-06 03:50:14 +02:00
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;
|
||
|
}
|