summaryrefslogtreecommitdiff
path: root/builtins.h
diff options
context:
space:
mode:
authorJari Aalto <jari.aalto@cante.net>2002-07-17 14:10:11 +0000
committerJari Aalto <jari.aalto@cante.net>2009-09-12 16:46:55 +0000
commit7117c2d221b2aed4ede8600f6a36b7c1454b4f55 (patch)
treeb792f26ecca68813c51ed5ba2e381790758ef31b /builtins.h
parentf73dda092b33638d2d5e9c35375f687a607b5403 (diff)
downloadbash-7117c2d221b2aed4ede8600f6a36b7c1454b4f55.tar.gz
Imported from ../bash-2.05b.tar.gz.devel-base-dist
Diffstat (limited to 'builtins.h')
-rw-r--r--builtins.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/builtins.h b/builtins.h
index e97fa04b..53fb5274 100644
--- a/builtins.h
+++ b/builtins.h
@@ -44,10 +44,10 @@
/* The thing that we build the array of builtins out of. */
struct builtin {
char *name; /* The name that the user types. */
- sh_builtin_func_t *function; /* The address of the invoked function. */
+ sh_builtin_func_t *function; /* The address of the invoked function. */
int flags; /* One of the #defines above. */
- char **long_doc; /* NULL terminated array of strings. */
- char *short_doc; /* Short version of documenation. */
+ char * const *long_doc; /* NULL terminated array of strings. */
+ const char *short_doc; /* Short version of documenation. */
char *handle; /* for future use */
};