1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-13 13:40:36 +02:00
openwrt-xburst/package/broadcom-wl/src/nvram/nvram_stub.c
nbd 40efe09d28 broadcom-wl: add nvram stub to fix nas compile after the switch to unvram
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15439 3c298f89-4303-0410-b956-a3cf2f4a3e73
2009-04-27 14:18:34 +00:00

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;
}