Imported from ../bash-3.1.tar.gz.
[platform/upstream/bash.git] / builtins.h
index cc4b700..f75e503 100644 (file)
@@ -6,7 +6,7 @@
 
    Bash is free software; you can redistribute it and/or modify it
    under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 1, or (at your option)
+   the Free Software Foundation; either version 2, or (at your option)
    any later version.
 
    Bash is distributed in the hope that it will be useful, but WITHOUT
 
    You should have received a copy of the GNU General Public License
    along with Bash; see the file COPYING.  If not, write to the Free
-   Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
+   Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA. */
 
 #include "config.h"
 
 #if defined (HAVE_UNISTD_H)
+#  ifdef _MINIX
+#    include <sys/types.h>
+#  endif
 #  include <unistd.h>
 #endif
 
 #define SPECIAL_BUILTIN 0x8    /* This is a Posix `special' builtin. */
 #define ASSIGNMENT_BUILTIN 0x10        /* This builtin takes assignment statements. */
 
+#define BASE_INDENT    4
+
 /* The thing that we build the array of builtins out of. */
 struct builtin {
   char *name;                  /* The name that the user types. */
-  Function *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 */
 };