io_ring 0.0.2

liburing wrapper
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: MIT */
#define IOURINGINLINE

#ifdef __clang__
// clang doesn't seem to particularly like that we're including a header that
// deliberately contains function definitions so we explicitly silence it
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wmissing-prototypes"
#endif

#include "liburing.h"

#ifdef __clang__
#pragma clang diagnostic pop
#endif