mirror of
https://github.com/upa/mscp.git
synced 2026-02-15 01:34:44 +08:00
11 lines
191 B
C
11 lines
191 B
C
#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_ */
|