Skip to content

Commit

Permalink
iox-eclipse-iceoryx#751 Do not include unistd.h since it is not avail…
Browse files Browse the repository at this point in the history
…able in windows

Signed-off-by: Christian Eltzschig <me@elchris.org>
  • Loading branch information
elfenpiff committed Jun 23, 2022
1 parent 795f0bd commit b303960
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions iceoryx_examples/request_response_in_c/client_c_waitset.c
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>

#if !defined(_WIN32)
#include <unistd.h>
#endif

#define NUMBER_OF_NOTIFICATIONS 1

Expand Down

0 comments on commit b303960

Please sign in to comment.