]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - stdlib/tst-strtod4.c
Regenerate libc.pot
[thirdparty/glibc.git] / stdlib / tst-strtod4.c
index 2d9d54c944dccb23a11ae6d1a87977afac13d21a..aae9835d82d38b4ee15fcc9cab9b4630aded4d06 100644 (file)
@@ -3,7 +3,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#define NBSP "\xc2\xa0"
+#define NNBSP "\xe2\x80\xaf"
 
 static const struct
 {
@@ -12,8 +12,8 @@ static const struct
   double expected;
 } tests[] =
   {
-    { "000"NBSP"000"NBSP"000", "", 0.0 },
-    { "1"NBSP"000"NBSP"000,5x", "x", 1000000.5 }
+    { "000"NNBSP"000"NNBSP"000", "", 0.0 },
+    { "1"NNBSP"000"NNBSP"000,5x", "x", 1000000.5 }
   };
 #define NTESTS (sizeof (tests) / sizeof (tests[0]))