Home | History | Annotate | Download | only in include
      1 #pragma once
      2 
      3 #include <stdbool.h>
      4 #include <stdint.h>
      5 
      6 #define UNUSED_ATTR __attribute__((unused))
      7 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
      8 
      9 typedef uint32_t timeout_t;
     10