aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/getpid.c
blob: c4d23dad8abb84ab9cdf405f23d776b620cfdcc4 (plain)
1
2
3
4
5
6
7
#include "threadimpl.h"
extern int getfforkid(void);
int
_threadgetpid(void)
{
	return getfforkid();
}