• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: MIT */
2 #define IOURINGINLINE
3 
4 #ifdef __clang__
5 // clang doesn't seem to particularly like that we're including a header that
6 // deliberately contains function definitions so we explicitly silence it
7 #pragma clang diagnostic push
8 #pragma clang diagnostic ignored "-Wmissing-prototypes"
9 #endif
10 
11 #include "liburing.h"
12 
13 #ifdef __clang__
14 #pragma clang diagnostic pop
15 #endif
16