]> git.ipfire.org Git - thirdparty/gcc.git/blame - libphobos/libdruntime/core/sys/netbsd/string.d
d: Merge upstream dmd 3982604c5, druntime bc58b1e9, phobos 12329adb6.
[thirdparty/gcc.git] / libphobos / libdruntime / core / sys / netbsd / string.d
CommitLineData
1e78c638
IB
1/**
2 * D header file for NetBSD string.
3 *
4 * Copyright: Copyright © 2019, The D Language Foundation
5 * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
6 * Authors: Ernesto Castellotti
7 */
8module core.sys.netbsd.string;
9
10public import core.stdc.string;
11import core.sys.netbsd.sys.featuretest;
12
13version (NetBSD):
14extern (C):
15nothrow:
16@nogc:
17
18static if (_NETBSD_SOURCE)
19{
9c7d5e88 20 pure void* memmem(return scope const void* haystack, size_t haystacklen, scope const void* needle, size_t needlelen);
1e78c638 21}