static int fgcmd (int, char **);
static int killcmd (int, char **);
#endif
-#ifdef ASH_BBAPPS_AS_BUILTINS
static int bltincmd (int, char **);
-#endif
static int cdcmd (int, char **);
static int breakcmd (int, char **);
#ifdef ASH_CMDCMD
{ BUILTIN_REGULAR "bg", bgcmd },
#endif
{ BUILTIN_SPECIAL "break", breakcmd },
-#ifdef ASH_BBAPPS_AS_BUILTINS
- { BUILTIN_SPECIAL "builtin", bltincmd },
-#endif
+ { BUILTIN_SPECIAL "builtin", bltincmd }, /* Do not disable this builtin ever or bad things happen */
{ BUILTIN_REGULAR "cd", cdcmd },
#ifdef ASH_BBAPPS_AS_BUILTINS
{ BUILTIN_NOSPEC "chdir", cdcmd },
/*
* Copyright (c) 1999 Herbert Xu <herbert@debian.org>
* This file contains code for the times builtin.
- * $Id: ash.c,v 1.4 2001/07/02 17:27:21 andersen Exp $
+ * $Id: ash.c,v 1.5 2001/07/05 05:24:12 andersen Exp $
*/
static int timescmd (int argc, char **argv)
{
static int fgcmd (int, char **);
static int killcmd (int, char **);
#endif
-#ifdef ASH_BBAPPS_AS_BUILTINS
static int bltincmd (int, char **);
-#endif
static int cdcmd (int, char **);
static int breakcmd (int, char **);
#ifdef ASH_CMDCMD
{ BUILTIN_REGULAR "bg", bgcmd },
#endif
{ BUILTIN_SPECIAL "break", breakcmd },
-#ifdef ASH_BBAPPS_AS_BUILTINS
- { BUILTIN_SPECIAL "builtin", bltincmd },
-#endif
+ { BUILTIN_SPECIAL "builtin", bltincmd }, /* Do not disable this builtin ever or bad things happen */
{ BUILTIN_REGULAR "cd", cdcmd },
#ifdef ASH_BBAPPS_AS_BUILTINS
{ BUILTIN_NOSPEC "chdir", cdcmd },
/*
* Copyright (c) 1999 Herbert Xu <herbert@debian.org>
* This file contains code for the times builtin.
- * $Id: ash.c,v 1.4 2001/07/02 17:27:21 andersen Exp $
+ * $Id: ash.c,v 1.5 2001/07/05 05:24:12 andersen Exp $
*/
static int timescmd (int argc, char **argv)
{