12 lines
163 B
C
12 lines
163 B
C
/*
|
|
\file win32/adapt.c
|
|
\brief Implementation of Win32 adaptation of libc functions
|
|
*/
|
|
|
|
#include "adapt.h"
|
|
|
|
pid_t getpid(void)
|
|
{
|
|
return GetCurrentProcessId();
|
|
}
|