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.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/sysdeps/trystrnlen.c b/src/sysdeps/trystrnlen.c
index 5361cc9..7ebab53 100644
--- a/src/sysdeps/trystrnlen.c
+++ b/src/sysdeps/trystrnlen.c
@@ -1,4 +1,8 @@
/* ISC license. */
#include <string.h>
-int main () { return strnlen("/", 1) ; }
+
+int main (void)
+{
+ return strnlen("/", 1) ;
+}