diff options
Diffstat (limited to 'zix')
-rw-r--r-- | zix/sem.h | 4 | ||||
-rw-r--r-- | zix/zix.h | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -27,8 +27,8 @@ # include <limits.h> # include <windows.h> #else -# include <semaphore.h> # include <errno.h> +# include <semaphore.h> #endif #ifdef __cplusplus @@ -42,6 +42,8 @@ extern "C" { @{ */ +struct ZixSemImpl; + /** A counting semaphore. @@ -23,10 +23,10 @@ @{ */ +#include "zix/btree.h" #include "zix/common.h" #include "zix/sorted_array.h" #include "zix/tree.h" -#include "zix/btree.h" /** @} |