parser-inc: Add stub header for sys/sysctl.h for BSD (incl. macOS)

This commit is contained in:
rdb 2023-02-22 17:33:49 +01:00
parent eefb51f510
commit 0a7be36be1

View File

@ -0,0 +1,15 @@
/**
* Stub header for sys/sysctl.h in macOS and FreeBSD.
*/
#pragma once
struct ctlname {
char *ctl_name;
int ctl_type;
};
struct sysctl_req;
struct sysctl_oid;
struct sysctl_ctx_entry;
struct sysctl_ctx_list;