]> git.cameronkatri.com Git - mandoc.git/blobdiff - test-strlcat.c
Fully integrate apropos(1) into mandoc(1).
[mandoc.git] / test-strlcat.c
index 5d450dd04d4e5ad531ce8dee04f2a801f0ee3537..b74ce6f4f8f38920eefc004afdc9b6c2d4a011d1 100644 (file)
@@ -1,8 +1,9 @@
 #include <string.h>
 
 int
-main(int argc, char **argv)
+main(void)
 {
-       strlcat(argv[0], argv[1], 10);
-       return 0;
+       char buf[3] = "a";
+       return( ! (2 == strlcat(buf, "b", sizeof(buf)) &&
+           'a' == buf[0] && 'b' == buf[1] && '\0' == buf[2]));
 }