summaryrefslogtreecommitdiff
path: root/text-utils/rev.c
diff options
context:
space:
mode:
authorFabian Groffen <grobian@gentoo.org>2011-01-25 22:44:52 +0100
committerKarel Zak <kzak@redhat.com>2011-02-14 17:45:24 +0100
commiteb76ca98b0733754d7e9a40f754e89b50af2bf06 (patch)
treef2becaf31f77a664256273e6ec6772904422ac53 /text-utils/rev.c
parent4a01477b12bc6c7ced2306e2700021672f43a4a0 (diff)
downloadutil-linux-eb76ca98b0733754d7e9a40f754e89b50af2bf06.tar.gz
build-sys: provide alternatives for err, errx, warn and warnx
Solaris lacks err, errx, warn and warnx. This also means the err.h header doesn't exist. Removed err.h include from all files, and included err.h from c.h instead if it exists, otherwise alternatives are provided. Signed-off-by: Fabian Groffen <grobian@gentoo.org>
Diffstat (limited to 'text-utils/rev.c')
-rw-r--r--text-utils/rev.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/text-utils/rev.c b/text-utils/rev.c
index b6924497..89e5e585 100644
--- a/text-utils/rev.c
+++ b/text-utils/rev.c
@@ -55,12 +55,12 @@
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
-#include <err.h>
#include <signal.h>
#include "nls.h"
#include "xalloc.h"
#include "widechar.h"
+#include "c.h"
wchar_t *buf;