aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/getpid.c
blob: da03bd3f7a6ddbab22edc7f977cedf1b5268fba9 (plain)
1
2
3
4
5
6
7
8
#include "threadimpl.h"
#include <unistd.h>

int
_threadgetpid(void)
{
	return getpid();
}