blob: cf40ac37905cf843445028afa111d9fc4cc88620 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/devctl.h.html
#include "core.h"
#include <devctl.h>
TEST(devctl_h)
{
TYPE(size_t);
FUNCTION(posix_devctl,
FN(int, int, int, void *restrict, size_t, int *restrict));
}
|