]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - localedata/tst-mbswcs5.c
Fix nscd/cachedumper.c compile errors
[thirdparty/glibc.git] / localedata / tst-mbswcs5.c
index efb6dda89495a7e36750b1426323d8b2385070e8..0bfd4e922fd77a24d27b5f3788140e93f0a4e4c6 100644 (file)
@@ -1,5 +1,5 @@
 /* Test restarting behaviour of wcrtomb.
-   Copyright (C) 2000 Free Software Foundation, Inc.
+   Copyright (C) 2000-2020 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Bruno Haible <haible@ilog.fr>.
 
@@ -15,7 +15,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <stdio.h>
 #include <string.h>
 #define show(expr, nexp, bufexp) \
   {                                                                    \
     size_t res = expr;                                                 \
-    printf (#expr " -> %Zd", res);                                     \
+    printf (#expr " -> %zu", res);                                     \
     dst += res;                                                                \
     printf (", dst = buf+%td", dst - (char *) buf);                    \
     if (res != nexp || dst != (char *) (bufexp))                       \
       {                                                                        \
-       printf (", expected %Zd and buf+%td", nexp,                     \
+       printf (", expected %zu and buf+%td", (size_t) nexp,            \
                (bufexp) - (unsigned char *) buf);                      \
        result = 1;                                                     \
       }                                                                        \
     putc ('\n', stdout);                                               \
   }
 
-int
-main (void)
+static int
+do_test (void)
 {
   unsigned char buf[7] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
   const unsigned char bufcheck[7] = { 0x25, 0xe2, 0x82, 0xac, 0xce, 0xbb, 0 };
@@ -72,3 +72,6 @@ main (void)
 
   return result;
 }
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"