repo.or.cz
/
netsniff-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
cpp: Allow to pass additional cpp options
[netsniff-ng.git]
/
sysctl.h
blob
332380b102dd7dc976097e76bf059b332f8febb2
1
#ifndef SYSCTL_H
2
#define SYSCTL_H
3
4
#define SYSCTL_PROC_PATH
"/proc/sys/"
5
6
int
sysctl_set_int
(
const char
*
file
,
int
value
);
7
int
sysctl_get_int
(
const char
*
file
,
int
*
value
);
8
9
#endif