diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-02-22 17:36:10 +0100 |
---|---|---|
committer | Dimitri Staessens <dimitri.staessens@intec.ugent.be> | 2016-02-23 01:53:26 +0100 |
commit | 7cd377ad7cb8c636262a27b31341b8c54dd797fb (patch) | |
tree | 293a4003b4b185f66ee6b9cf32bd40902c2e2297 /include | |
parent | 9fb8dff10efc9869264e55da64b64c4aadf805a6 (diff) | |
download | ouroboros-7cd377ad7cb8c636262a27b31341b8c54dd797fb.tar.gz ouroboros-7cd377ad7cb8c636262a27b31341b8c54dd797fb.zip |
include: Fix common includes
common.h will now include stdbool and several other useful includes
(size_t for instance).
Diffstat (limited to 'include')
-rw-r--r-- | include/ouroboros/common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/ouroboros/common.h b/include/ouroboros/common.h index f2be815f..90431208 100644 --- a/include/ouroboros/common.h +++ b/include/ouroboros/common.h @@ -24,6 +24,8 @@ #define OUROBOROS_COMMON_H #include <stdint.h> +#include <unistd.h> +#include <stdbool.h> typedef uint32_t port_id_t; |