include <string.h>
[util-vserver.git] / util-vserver / lib / testsuite / fmt.c
index 0fe4274..41578de 100644 (file)
@@ -22,6 +22,7 @@
 
 #include "lib/fmt.h"
 #include <assert.h>
+#include <string.h>
 
 #define TEST(VAL, EXP) {                       \
     char       buf[512];                       \
@@ -45,4 +46,6 @@ int main()
   TEST(65535, "ffff");
   TEST(65536, "10000");
   TEST(68719476736ul, "1000000000");
+
+  return 0;
 }