strtod: fix bug in replacement function on AIX
[gnulib.git] / tests / test-sys_socket.c
index 6ea6a73..1c3b560 100644 (file)
@@ -49,5 +49,9 @@ main (void)
   x.ss_family = 42;
   i = 42;
 
-  return ! (i + x.ss_family);
+  /* Tell the compiler that these variables are used.  */
+  (void) x;
+  (void) i;
+
+  return 0;
 }