aboutsummaryrefslogtreecommitdiff
path: root/include/compat.h
blob: b116f2c943c1327edadd930177836a942fd32cb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef SPM_COMPAT_H
#define SPM_COMPAT_H

#include "config.h"

#ifndef HAVE_STRSEP
char *strsep(char **sp, char *sep);
#endif

#ifndef HAVE_REALLOC_ARRAY
void *reallocarray (void *__ptr, size_t __nmemb, size_t __size);
#endif

#endif //SPM_COMPAT_H