diff options
author | konablend <[email protected]> | 2009-06-06 23:04:51 +0000 |
---|---|---|
committer | konablend <[email protected]> | 2009-06-06 23:04:51 +0000 |
commit | 29a5aad80b27a47bec2dcb69bd97f06d38c64602 (patch) | |
tree | 371b3adde17bcfa96d78b8f62d78fb1f0245b79d /test/test.c | |
parent | 87313a3e48bf2349cbb5be3e89db9b203aae812f (diff) |
- mingw fixes to use fopen() with 'b' flag.
- include pthread.h for pthread_win32 attach/detach decls.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@2495 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test/test.c')
-rw-r--r-- | test/test.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test.c b/test/test.c index 94404d2cc..b9681c35e 100644 --- a/test/test.c +++ b/test/test.c @@ -11,6 +11,10 @@ #include <unistd.h> #include <inttypes.h> +#ifdef PTW32_STATIC_LIB +#include <pthread.h> +#endif + #include "hb.h" #include "parsecsv.h" |