]> git.cameronkatri.com Git - mandoc.git/blobdiff - test-stringlist.c
MANWIDTH
[mandoc.git] / test-stringlist.c
index 790ba09533b2b5ce4cf076faf88b074b9e6423d2..a473c5a8d4b57a4a2f35661705c9af2c67941775 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: test-stringlist.c,v 1.1 2015/05/20 22:22:59 schwarze Exp $ */
+/*     $Id: test-stringlist.c,v 1.3 2018/08/15 02:48:51 schwarze Exp $ */
 /*
  * Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>
  *
@@ -15,6 +15,7 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <stddef.h>
 #include <stringlist.h>
 
 int
@@ -24,14 +25,14 @@ main(void)
        char             teststr[] = "test";
 
        if ((sl = sl_init()) == NULL)
-               return(1);
+               return 1;
        if (sl_add(sl, teststr))
-               return(2);
+               return 2;
        if (sl->sl_cur != 1)
-               return(3);
+               return 3;
        if (sl->sl_str[0] != teststr)
-               return(4);
+               return 4;
 
        sl_free(sl, 0);
-       return(0);
+       return 0;
 }