queue.h 227 B

1234567
  1. #if __has_include(<bsd/sys/queue.h>)
  2. /* On Linux, try using sys/queue.h provided by libbsd-dev */
  3. #include <bsd/sys/queue.h>
  4. #else
  5. /* Fall back to sys/queue.h which may exist e.g. on macOS */
  6. #include_next <sys/queue.h>
  7. #endif