diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:25:19 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-02 18:25:19 +0300 |
| commit | f0f174696b38adfd6063bb74e5b48d2b864cb650 (patch) | |
| tree | 445ec6db16bfd8ecd36dfcb8907c852c8c104b10 /corebinutils/ed/compat.h | |
| parent | 0e49ba0e7b8b9bc8bdc61f8c80228252392e758e (diff) | |
| parent | 93528dc40c12704e0f9ca16475e97e68b4317fb9 (diff) | |
| download | Project-Tick-f0f174696b38adfd6063bb74e5b48d2b864cb650.tar.gz Project-Tick-f0f174696b38adfd6063bb74e5b48d2b864cb650.zip | |
Add 'corebinutils/ed/' from commit '93528dc40c12704e0f9ca16475e97e68b4317fb9'
git-subtree-dir: corebinutils/ed
git-subtree-mainline: 0e49ba0e7b8b9bc8bdc61f8c80228252392e758e
git-subtree-split: 93528dc40c12704e0f9ca16475e97e68b4317fb9
Diffstat (limited to 'corebinutils/ed/compat.h')
| -rw-r--r-- | corebinutils/ed/compat.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/corebinutils/ed/compat.h b/corebinutils/ed/compat.h new file mode 100644 index 0000000000..c12fdc6a94 --- /dev/null +++ b/corebinutils/ed/compat.h @@ -0,0 +1,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 |
