Include stdlib.h for size_t in case psem.c isn't included.

This commit is contained in:
Patrick Mahoney 2011-12-12 20:10:51 -06:00
parent b4b869e074
commit f37d5499c7
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,8 @@
* Portable semaphore interface focusing on cross-process use.
*/
#include <stdlib.h> /* size_t */
#ifdef HAVE_SEM_OPEN
#include "psem_posix.h"
#endif