diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-10-22 00:39:59 -0400 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-12-19 02:22:47 +0100 |
commit | 7405c46c1d89ab1162d19c0902a08ef7d1b47547 (patch) | |
tree | 9688dbb6c9650010f842c0a8c6845166fa5642aa | |
parent | a8314922fb0c4bc7b331bfb8be97ac2488c010a6 (diff) | |
download | uClibc-alpine-7405c46c1d89ab1162d19c0902a08ef7d1b47547.tar.bz2 uClibc-alpine-7405c46c1d89ab1162d19c0902a08ef7d1b47547.tar.xz |
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: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
-rw-r--r-- | libc/sysdeps/linux/sparc/qp_ops.c | 2 |
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); } |