Explorar el Código

sparc: use fputs to write to stderr

This also has the advantage of fputs() having a hidden alias while
puts does not.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Mike Frysinger hace 16 años
padre
commit
bc5922f17d
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      libc/sysdeps/linux/sparc/qp_ops.c

+ 1 - 1
libc/sysdeps/linux/sparc/qp_ops.c

@@ -5,7 +5,7 @@
 
 static void fakedef(void)
 {
-	puts("Unimplemented _Q* func called, exiting\n");
+	fputs("Unimplemented _Q* func called, exiting\n", stderr);
 	exit(-1);
 }