aboutsummaryrefslogtreecommitdiff
path: root/messages.c
diff options
context:
space:
mode:
Diffstat (limited to 'messages.c')
-rw-r--r--messages.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/messages.c b/messages.c
index c06a87f01..d9a134281 100644
--- a/messages.c
+++ b/messages.c
@@ -52,37 +52,37 @@
52 "BusyBox v" BB_VER " (" BB_BT ") multi-call binary -- GPL2") 52 "BusyBox v" BB_VER " (" BB_BT ") multi-call binary -- GPL2")
53#endif 53#endif
54#if defined bb_need_name_too_long || ! defined BB_DECLARE_EXTERN 54#if defined bb_need_name_too_long || ! defined BB_DECLARE_EXTERN
55 BB_DEF_MESSAGE(name_too_long, "file name too long\n") 55 BB_DEF_MESSAGE(name_too_long, "file name too long")
56#endif 56#endif
57#if defined bb_need_omitting_directory || ! defined BB_DECLARE_EXTERN 57#if defined bb_need_omitting_directory || ! defined BB_DECLARE_EXTERN
58 BB_DEF_MESSAGE(omitting_directory, "%s: omitting directory\n") 58 BB_DEF_MESSAGE(omitting_directory, "%s: omitting directory")
59#endif 59#endif
60#if defined bb_need_not_a_directory || ! defined BB_DECLARE_EXTERN 60#if defined bb_need_not_a_directory || ! defined BB_DECLARE_EXTERN
61 BB_DEF_MESSAGE(not_a_directory, "%s: not a directory\n") 61 BB_DEF_MESSAGE(not_a_directory, "%s: not a directory")
62#endif 62#endif
63#if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN 63#if defined bb_need_memory_exhausted || ! defined BB_DECLARE_EXTERN
64 BB_DEF_MESSAGE(memory_exhausted, "memory exhausted\n") 64 BB_DEF_MESSAGE(memory_exhausted, "memory exhausted")
65#endif 65#endif
66#if defined bb_need_invalid_date || ! defined BB_DECLARE_EXTERN 66#if defined bb_need_invalid_date || ! defined BB_DECLARE_EXTERN
67 BB_DEF_MESSAGE(invalid_date, "invalid date `%s'\n") 67 BB_DEF_MESSAGE(invalid_date, "invalid date `%s'")
68#endif 68#endif
69#if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN 69#if defined bb_need_invalid_option || ! defined BB_DECLARE_EXTERN
70 BB_DEF_MESSAGE(invalid_option, "invalid option -- %c\n") 70 BB_DEF_MESSAGE(invalid_option, "invalid option -- %c")
71#endif 71#endif
72#if defined bb_need_io_error || ! defined BB_DECLARE_EXTERN 72#if defined bb_need_io_error || ! defined BB_DECLARE_EXTERN
73 BB_DEF_MESSAGE(io_error, "%s: input/output error -- %s\n") 73 BB_DEF_MESSAGE(io_error, "%s: input/output error -- %s")
74#endif 74#endif
75#if defined bb_need_help || ! defined BB_DECLARE_EXTERN 75#if defined bb_need_help || ! defined BB_DECLARE_EXTERN
76 BB_DEF_MESSAGE(dash_dash_help, "--help") 76 BB_DEF_MESSAGE(dash_dash_help, "--help")
77#endif 77#endif
78#if defined bb_need_write_error || ! defined BB_DECLARE_EXTERN 78#if defined bb_need_write_error || ! defined BB_DECLARE_EXTERN
79 BB_DEF_MESSAGE(write_error, "Write Error\n") 79 BB_DEF_MESSAGE(write_error, "Write Error")
80#endif 80#endif
81#if defined bb_need_too_few_args || ! defined BB_DECLARE_EXTERN 81#if defined bb_need_too_few_args || ! defined BB_DECLARE_EXTERN
82 BB_DEF_MESSAGE(too_few_args, "too few arguments\n") 82 BB_DEF_MESSAGE(too_few_args, "too few arguments")
83#endif 83#endif
84#if defined bb_need_name_longer_than_foo || ! defined BB_DECLARE_EXTERN 84#if defined bb_need_name_longer_than_foo || ! defined BB_DECLARE_EXTERN
85 BB_DEF_MESSAGE(name_longer_than_foo, "Names longer than %d chars not supported.\n") 85 BB_DEF_MESSAGE(name_longer_than_foo, "Names longer than %d chars not supported.")
86#endif 86#endif
87 87
88 88