File: test_build.c

package info (click to toggle)
liburing 2.13-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,212 kB
  • sloc: ansic: 58,515; sh: 816; makefile: 598; cpp: 32
file content (9 lines) | stat: -rw-r--r-- 140 bytes parent folder | download
1
2
3
4
5
6
7
8
9
#include <liburing.h>

int main(void)
{
	struct io_uring ring;
	io_uring_queue_init(8, &ring, 0);
	io_uring_queue_exit(&ring);
	return 0;
}