Skip to content

Commit

Permalink
Fix test bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Ali-Mirghasemi committed Nov 30, 2024
1 parent 3672fd4 commit 9339202
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Examples/Stream-Test/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@
#include <string.h>

#include "StreamBuffer.h"
#include "OutputStream.h"
#include "InputStream.h"

#if STREAM_WRITE && STREAM_PENDING_BYTES
#include "OutputStream.h"
#endif
#if STREAM_READ && STREAM_PENDING_BYTES
#include "InputStream.h"
#endif

#include <time.h>

Expand Down

0 comments on commit 9339202

Please sign in to comment.