blob: 33c0288473cc50f0baa88a08940408a8011a1eaa (
plain)
1
2
3
4
5
6
7
8
9
10
|
#ifndef _OPENBSD_COMPAT_H
#define _OPENBSD_COMPAT_H
#include "config.h"
#ifndef HAVE_STRLCAT
size_t strlcat(char *dst, const char *src, size_t siz);
#endif
#endif /* _OPENBSD_COMPAT_H_ */
|