hush/include
Rob Landley 193c8c7383 #ifdef reduction infrastructure, based on an argument between Shaun Jackman,
Rob Landley, and others.

Currently CONFIG options are defined or undefined, so we chop out code with
#ifdefs, ala:
#ifdef CONFIG_THING
  stuff();
#endif

This creates a new header file, bb_config.h, which sets the CONFIG entry to 1
or 0, and lets us do:

  if(CONFIG_THING) stuff();

And let the compiler do dead code elimination to get rid of it.  (Note: #ifdef
will still work because for the 1 case it's a static const int, not a #define.)
2005-07-27 06:55:36 +00:00
..
.cvsignore Ignore generated files 2001-10-24 06:53:33 +00:00
applets.h applying fix from; 2005-07-19 21:21:58 +00:00
busybox.h #ifdef reduction infrastructure, based on an argument between Shaun Jackman, 2005-07-27 06:55:36 +00:00
dump.h Major coreutils update. 2003-03-19 09:13:01 +00:00
grp_.h Replace the old and somewhat buggy pwd_grp stuff with the shiny 2004-07-15 12:53:49 +00:00
inet_common.h From: Shaun Jackman <sjackman@gmail.com> 2005-05-03 22:30:08 +00:00
libbb.h #ifdef reduction infrastructure, based on an argument between Shaun Jackman, 2005-07-27 06:55:36 +00:00
pwd_.h Replace the old and somewhat buggy pwd_grp stuff with the shiny 2004-07-15 12:53:49 +00:00
shadow_.h Replace the old and somewhat buggy pwd_grp stuff with the shiny 2004-07-15 12:53:49 +00:00
unarchive.h applying fixes from: 2005-07-20 20:26:49 +00:00
usage.h a bit more polish 2005-07-18 09:45:35 +00:00