Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'agent/tcf/framework/streams.c')
-rw-r--r--agent/tcf/framework/streams.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/agent/tcf/framework/streams.c b/agent/tcf/framework/streams.c
index fda2ddd8..1bfe1d41 100644
--- a/agent/tcf/framework/streams.c
+++ b/agent/tcf/framework/streams.c
@@ -17,11 +17,11 @@
* Abstract byte stream. Bytes in the stream can be divided into groups - messages.
*/
-#include <config.h>
+#include <tcf/config.h>
#include <stddef.h>
#include <string.h>
-#include <framework/myalloc.h>
-#include <framework/streams.h>
+#include <tcf/framework/myalloc.h>
+#include <tcf/framework/streams.h>
int (read_stream)(InputStream * inp) {
return (inp->cur < inp->end) ? *inp->cur++ : inp->read(inp);

Back to the top