Browse Source

px4_log.c: fix cygwin include

sbg
Beat Küng 7 years ago committed by Lorenz Meier
parent
commit
22b47a84f5
  1. 4
      src/platforms/common/px4_log.c

4
src/platforms/common/px4_log.c

@ -34,8 +34,10 @@ @@ -34,8 +34,10 @@
#include <stdlib.h>
#include <string.h>
#include <px4_log.h>
#if defined(__PX4_POSIX) && !defined(__PX4_CYGWIN)
#if defined(__PX4_POSIX)
#if !defined(__PX4_CYGWIN)
#include <execinfo.h>
#endif
#include <px4_daemon/server_io.h>
#endif

Loading…
Cancel
Save