summaryrefslogtreecommitdiff
path: root/src/stdlib/unlockpt.c
blob: 69572138b36b85c4612b38b37e07e03709b08e29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdlib.h>

int unlockpt(int fildes)
{
	SIGNAL_SAFE(0);

	return fildes;
}

/*
XOPEN(400)
*/