diff options
author | Ruediger Meier | 2017-06-22 02:27:23 +0200 |
---|---|---|
committer | Ruediger Meier | 2017-06-25 02:22:53 +0200 |
commit | a2248466e4aa8d696725a0961663440726a7e40a (patch) | |
tree | 12e9143fcf6ae0c139d24ce426f8da01d6fc7fa7 /include | |
parent | mkfs.cramfs: add --help and --version (diff) | |
download | kernel-qcow2-util-linux-a2248466e4aa8d696725a0961663440726a7e40a.tar.gz kernel-qcow2-util-linux-a2248466e4aa8d696725a0961663440726a7e40a.tar.xz kernel-qcow2-util-linux-a2248466e4aa8d696725a0961663440726a7e40a.zip |
misc: no more errtryh()
Nowadays all our regular commands have --help options.
test_uuidd does not use translations anyways.
Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'include')
-rw-r--r-- | include/c.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/c.h b/include/c.h index 2bcdcea5d..8cf54cbe4 100644 --- a/include/c.h +++ b/include/c.h @@ -216,12 +216,6 @@ errmsg(char doexit, int excode, char adderr, const char *fmt, ...) exit(eval); \ }) -#define errtryh(eval) __extension__ ({ \ - fprintf(stderr, _("Try '%s -h' for more information.\n"), \ - program_invocation_short_name); \ - exit(eval); \ -}) - static inline __attribute__((const)) int is_power_of_2(unsigned long num) { |