Use error_msg instead of fprintf(stderr
diff --git a/libbb/syscalls.c b/libbb/syscalls.c
index 76b77f8..91e97b1 100644
--- a/libbb/syscalls.c
+++ b/libbb/syscalls.c
@@ -53,8 +53,8 @@
 	 *  you will need to recompile with a kernel supporting the
 	 *  pivot_root system call.
 	 */
-	fprintf(stderr, "\n\nTo make this application work, you will need to recompile\n");
-	fprintf(stderr, "with a kernel supporting the pivot_root system call. -Erik\n\n");
+	error_msg("\n\nTo make this application work, you will need to recompile\n"
+		"with a kernel supporting the pivot_root system call. -Erik\n");
 	errno=ENOSYS;
 	return -1;
 }
@@ -91,8 +91,8 @@
 	 *  you will need to recompile with a kernel supporting the
 	 *  umount2 system call.
 	 */
-	fprintf(stderr, "\n\nTo make this application work, you will need to recompile\n");
-	fprintf(stderr, "with a kernel supporting the umount2 system call. -Erik\n\n");
+	error_msg("\n\nTo make this application work, you will need to recompile\n"
+		"with a kernel supporting the umount2 system call. -Erik\n");
 	errno=ENOSYS;
 	return -1;
 }