summaryrefslogtreecommitdiff
path: root/corebinutils/ed/compat.h
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:25:19 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:25:19 +0300
commitf0f174696b38adfd6063bb74e5b48d2b864cb650 (patch)
tree445ec6db16bfd8ecd36dfcb8907c852c8c104b10 /corebinutils/ed/compat.h
parent0e49ba0e7b8b9bc8bdc61f8c80228252392e758e (diff)
parent93528dc40c12704e0f9ca16475e97e68b4317fb9 (diff)
downloadProject-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.h10
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