summaryrefslogtreecommitdiff
path: root/sysctl.h
blob: 332380b102dd7dc976097e76bf059b332f8febb2 (plain)
1
2
3
4
5
6
7
8
9
#ifndef SYSCTL_H
#define SYSCTL_H

#define SYSCTL_PROC_PATH "/proc/sys/"

int sysctl_set_int(const char *file, int value);
int sysctl_get_int(const char *file, int *value);

#endif