diff options
Diffstat (limited to 'ports/posix/src/port.h')
| -rw-r--r-- | ports/posix/src/port.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ports/posix/src/port.h b/ports/posix/src/port.h new file mode 100644 index 0000000..7c94ce8 --- /dev/null +++ b/ports/posix/src/port.h @@ -0,0 +1,16 @@ +/** + * + * @brief Port specific includes go in this file + * +*/ + +#ifndef __PORT_H +#define __PORT_H + +#include <pthread.h> +#include <mqueue.h> +#include <stdint.h> +#include <errno.h> +#include "stream.h" + +#endif |
