diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-02-22 17:36:10 +0100 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-02-22 17:36:10 +0100 |
commit | bc7bd364545f21b3b8522d5e7eabb9faa846845d (patch) | |
tree | 293a4003b4b185f66ee6b9cf32bd40902c2e2297 /include | |
parent | 59c9251f3584e8d016c41305ec272bfbf662405a (diff) | |
download | ouroboros-bc7bd364545f21b3b8522d5e7eabb9faa846845d.tar.gz ouroboros-bc7bd364545f21b3b8522d5e7eabb9faa846845d.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; |