blob: 448ead71d0f1dddc913868f7f946008fd2cea92d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
//Written in the D programming language
/++
D header file for FreeBSD's ifaddrs.h.
Copyright: Copyright 2024
License: $(HTTP www.boost.org/LICENSE_1_0.txt, Boost License 1.0).
Authors: $(HTTP jmdavisprog.com, Jonathan M Davis)
+/
module core.sys.freebsd.mqueue;
public import core.sys.posix.mqueue;
version (FreeBSD):
extern(C):
@nogc:
nothrow:
int mq_getfd_np(mqd_t mqd);
|