summaryrefslogtreecommitdiff
path: root/corebinutils/ed/compat.h
blob: c12fdc6a9428eeaee03753b38b2b3439f6e5b488 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef ED_COMPAT_H
#define ED_COMPAT_H

#include <stddef.h>

size_t ed_strlcpy(char *dst, const char *src, size_t dstsize);

#define strlcpy ed_strlcpy

#endif