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