aboutsummaryrefslogtreecommitdiff
path: root/ports/posix/src/port.h
blob: 7c94ce820f9ae7383283313398f9953a826c5930 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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