/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/external/threads.h

  • Committer: Gustav Hartvigsson
  • Date: 2015-09-20 20:46:17 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20150920204617-yhd8fal54o6mgwio
I have no idea why this is not working...0_o...

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#define TIME_UTC 1
36
36
#endif
37
37
 
38
 
#include "c99_compat.h" /* for `inline` */
 
38
//#include "c99_compat.h" /* for `inline` */
39
39
 
40
40
/*---------------------------- types ----------------------------*/
41
41
typedef void (*tss_dtor_t)(void*);
66
66
 
67
67
/*-------------------------- functions --------------------------*/
68
68
 
69
 
#if defined(_WIN32) && !defined(__CYGWIN__)
 
69
#if defined(__WIN32__) || defined(__WIN64__) //&& !defined(__CYGWIN__)
70
70
#include "threads_win32.h"
71
71
#elif defined(HAVE_PTHREAD)
72
72
#include "threads_posix.h"