diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-10-22 00:39:59 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-10-22 00:39:59 -0400 |
commit | bc5922f17d546bbd82644d0be03bb078bba1f85f (patch) | |
tree | 7179cfc6b3268129dfe313bdb56a70b86aafe8b2 /libc/sysdeps/linux | |
parent | f51fb26dbcceee9e48d10facc830bd4a549f6cc2 (diff) | |
download | uClibc-alpine-bc5922f17d546bbd82644d0be03bb078bba1f85f.tar.bz2 uClibc-alpine-bc5922f17d546bbd82644d0be03bb078bba1f85f.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>
Diffstat (limited to 'libc/sysdeps/linux')
-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); } |