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

int getdtablesize(void)
{
	return 0;
}

/*
XOPEN(400,600)
*/