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

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