Browse Source

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 14 years ago
parent
commit
bc5922f17d
1 changed files with 1 additions and 1 deletions
  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);
 }