aboutsummaryrefslogtreecommitdiff
path: root/libbb/libbb.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-30 18:08:03 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-30 18:08:03 +0000
commit6f343944548c2e41fde4a376e805bf322a8e01c9 (patch)
tree8f5b3ccff395779f19d57ce35015ce90cc8dd6f7 /libbb/libbb.h
parent65504ac12cdc4eff0a98fd50fff1a019fbb77f1b (diff)
downloadbusybox-w32-6f343944548c2e41fde4a376e805bf322a8e01c9.tar.gz
busybox-w32-6f343944548c2e41fde4a376e805bf322a8e01c9.tar.bz2
busybox-w32-6f343944548c2e41fde4a376e805bf322a8e01c9.zip
These messages can be .rodata, so make them even more const.
-Erik
Diffstat (limited to 'libbb/libbb.h')
-rw-r--r--libbb/libbb.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/libbb/libbb.h b/libbb/libbb.h
index 0ceb983cd..a53e647d3 100644
--- a/libbb/libbb.h
+++ b/libbb/libbb.h
@@ -268,18 +268,18 @@ enum {
268 FILEUTILS_INTERACTIVE = 16 268 FILEUTILS_INTERACTIVE = 16
269}; 269};
270 270
271extern const char *applet_name; 271extern const char * const applet_name;
272extern const char *full_version; 272extern const char * const full_version;
273extern const char *name_too_long; 273extern const char * const name_too_long;
274extern const char *omitting_directory; 274extern const char * const omitting_directory;
275extern const char *not_a_directory; 275extern const char * const not_a_directory;
276extern const char *memory_exhausted; 276extern const char * const memory_exhausted;
277extern const char *invalid_date; 277extern const char * const invalid_date;
278extern const char *invalid_option; 278extern const char * const invalid_option;
279extern const char *io_error; 279extern const char * const io_error;
280extern const char *dash_dash_help; 280extern const char * const dash_dash_help;
281extern const char *write_error; 281extern const char * const write_error;
282extern const char *too_few_args; 282extern const char * const too_few_args;
283extern const char *name_longer_than_foo; 283extern const char * const name_longer_than_foo;
284 284
285#endif /* __LIBBB_H__ */ 285#endif /* __LIBBB_H__ */