* src/lib/evil_unistd.c:

* src/lib/evil_unistd.h:
	declare and define getpid() for Windows CE.



SVN revision: 55854
This commit is contained in:
Vincent Torri 2011-01-04 18:52:28 +00:00
parent c8c4f6bf9f
commit 4bc3bb0962
3 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2011-01-04 Vincent Torri <doursse at users dot sf dot net>
* src/lib/evil_unistd.c:
* src/lib/evil_unistd.h:
declare and define getpid() for Windows CE.
2011-01-04 Vincent Torri <doursse at users dot sf dot net> 2011-01-04 Vincent Torri <doursse at users dot sf dot net>
* src/lib/dlfcn/dlfcn.h: * src/lib/dlfcn/dlfcn.h:

View File

@ -93,7 +93,7 @@ evil_usleep(unsigned long usec)
* *
*/ */
#ifdef _MSC_VER #if defined (_MSC_VER) || defined (_WIN32_WCE)
pid_t pid_t
getpid(void) getpid(void)
{ {

View File

@ -94,7 +94,7 @@ EAPI int evil_usleep(unsigned long usec);
* *
*/ */
#ifdef _MSC_VER #if defined (_MSC_VER) || defined (_WIN32_WCE)
/** /**
* @brief Return the process identifier of the calling process. * @brief Return the process identifier of the calling process.
* *