1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #2811 from josephnoir/topic/pthread_cond_osx

Add fix for clockid_t on OS X
This commit is contained in:
Oleg Hahm 2015-04-21 11:25:55 +02:00
commit d274fc4a83

View File

@ -24,6 +24,10 @@
# include "msp430_types.h"
#endif
#if defined(__MACH__)
typedef int clockid_t;
#endif
#ifdef __cplusplus
extern "C" {
#endif