Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
netdata-1
netdata-1
/
src
/
libnetdata
/
os
/
strndup.h
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
h
12 lines
191 Bytes
Copy permalink
Copy
Raw
1
// SPDX-License-Identifier: GPL-3.0-or-later
2
3
#ifndef STRNDUP_H
4
#define STRNDUP_H
5
6
#include
"config.h"
7
8
#ifndef HAVE_STRNDUP
9
#define strndup(s, n) os_strndup(s, n)
10
#endif
11
12
#endif //STRNDUP_H