- Allocate buffer large enough to contain UNIX_PATH_MAX size pathnames in case of...
[oweals/gnunet.git] / src / util / test_common_endian.c
index 43f163902eeebbd99772d0b3eac3f8f289929d0e..8974b43fe842e3a9093b887a9d83e4cd6879719e 100644 (file)
@@ -4,7 +4,7 @@
 
      GNUnet is free software; you can redistribute it and/or modify
      it under the terms of the GNU General Public License as published
-     by the Free Software Foundation; either version 2, or (at your
+     by the Free Software Foundation; either version 3, or (at your
      option) any later version.
 
      GNUnet is distributed in the hope that it will be useful, but
@@ -22,7 +22,7 @@
  * @brief testcase for common_endian.c
  */
 #include "platform.h"
-#include "gnunet_common.h"
+#include "gnunet_util_lib.h"
 
 #define CHECK(n) if (n != GNUNET_htonll(GNUNET_ntohll(n))) return 1;
 
@@ -33,8 +33,8 @@ main (int argc, char *argv[])
   CHECK (1);
   CHECK (0x12345678);
   CHECK (123456789012345LL);
-  if ((0x1234567890ABCDEFLL !=
-       GNUNET_htonll (0xEFCDAB9078563412LL)) && 42 != htonl (42))
+  if ((0x1234567890ABCDEFLL != GNUNET_htonll (0xEFCDAB9078563412LL)) &&
+      42 != htonl (42))
     return 1;
   return 0;
 }