summaryrefslogtreecommitdiff
path: root/src/sysdeps/trystrnlen.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysdeps/trystrnlen.c')
-rw-r--r--src/sysdeps/trystrnlen.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/sysdeps/trystrnlen.c b/src/sysdeps/trystrnlen.c
new file mode 100644
index 0000000..5361cc9
--- /dev/null
+++ b/src/sysdeps/trystrnlen.c
@@ -0,0 +1,4 @@
+/* ISC license. */
+
+#include <string.h>
+int main () { return strnlen("/", 1) ; }