Skip to content

Commit

Permalink
Fix include order introduced in #e5d2059d9
Browse files Browse the repository at this point in the history
  • Loading branch information
N-Storm committed May 30, 2024
1 parent 7feb15b commit ef1825f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions software/src/digilivolo.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
#define dl_sleep_ms(ms) usleep(ms * 1000)
#endif

#if defined(__APPLE__) && HID_API_VERSION >= HID_API_MAKE_VERSION(0, 12, 0)
#include <hidapi_darwin.h>
#endif

#include "defs.h"
#include "args.h"

#include <hidapi.h>
#include "usb_func.h"

#if defined(__APPLE__) && HID_API_VERSION >= HID_API_MAKE_VERSION(0, 12, 0)
#include <hidapi_darwin.h>
#endif

// [argp] Our argp parser.
static struct argp argp = { options, parse_opt, args_doc, doc };

Expand Down

0 comments on commit ef1825f

Please sign in to comment.