summaryrefslogtreecommitdiffstats
path: root/src/libnetdata/os/strndup.h
blob: 9e51c8fd393ce5f4f7a32ca4b65a1ef987e476ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// SPDX-License-Identifier: GPL-3.0-or-later

#ifndef STRNDUP_H
#define STRNDUP_H

#include "config.h"

#ifndef HAVE_STRNDUP
#define strndup(s, n) os_strndup(s, n)
#endif

#endif //STRNDUP_H