summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/sparc
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-10-22 00:39:59 -0400
committerAustin Foxley <austinf@cetoncorp.com>2009-11-09 15:33:34 -0800
commit09f8e01cc53ee7c68819a8d626f12e39139ec7aa (patch)
tree4dcb4f0a417ebf76166e2f4a17f897c8b9ab6375 /libc/sysdeps/linux/sparc
parentb7901759a9f18b16ca5fded40a588a583d2bb503 (diff)
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> Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'libc/sysdeps/linux/sparc')
-rw-r--r--libc/sysdeps/linux/sparc/qp_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/sparc/qp_ops.c b/libc/sysdeps/linux/sparc/qp_ops.c
index 5b0dc5e87..123be53fb 100644
--- a/libc/sysdeps/linux/sparc/qp_ops.c
+++ b/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);
}