summaryrefslogtreecommitdiff
path: root/src/unistd/sysconf.c
blob: ae8aa5a340f87450b290a5d5b3bc2801e4350811 (plain)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>
#include <unistd.h>

long sysconf(int name)
{
	return name;
}
/*
POSIX(1)
*/