diff options
author | Fabian Groffen <grobian@gentoo.org> | 2011-01-25 22:44:52 +0100 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2011-02-14 17:45:24 +0100 |
commit | eb76ca98b0733754d7e9a40f754e89b50af2bf06 (patch) | |
tree | f2becaf31f77a664256273e6ec6772904422ac53 /text-utils/rev.c | |
parent | 4a01477b12bc6c7ced2306e2700021672f43a4a0 (diff) | |
download | util-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.c | 2 |
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; |