projects
/
openwrt.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
refresh patch
[openwrt.git]
/
package
/
broadcom-wl
/
src
/
nvram
/
nvram_stub.c
1
#include <stdlib.h>
2
3
int
nvram_set
(
const char
*
name
,
const char
*
value
)
4
{
5
return
-
1
;
6
}
7
8
char
*
nvram_get
(
const char
*
name
)
9
{
10
return
NULL
;
11
}
12
13
int
nvram_unset
(
const char
*
name
)
14
{
15
return
-
1
;
16
}
This page took
0.049575 seconds
and
5
git commands to generate.