diff options
author | Rob Landley <rob@landley.net> | 2014-03-29 18:11:00 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-03-29 18:11:00 -0500 |
commit | 5b405827a2fa4c928c488f3e7b0197dfec60dcc2 (patch) | |
tree | e8bbf1f2f4b8f70bd7e0682e0440ac64735096a4 /toys | |
parent | d4f01257d9d3b0d776114046a43d237a424fef77 (diff) | |
download | toybox-5b405827a2fa4c928c488f3e7b0197dfec60dcc2.tar.gz |
Group headers by standard (POSIX or LSB) or function (internationalization, networking). Move headers standards ignore (but which have been there >15 years) to lib/portability.h. Fold xregcomp into lib since it's posix.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/pending/mdev.c | 1 | ||||
-rw-r--r-- | toys/pending/mkpasswd.c | 1 | ||||
-rw-r--r-- | toys/pending/sed.c | 1 | ||||
-rw-r--r-- | toys/posix/nl.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/toys/pending/mdev.c b/toys/pending/mdev.c index b89ac2ca..2d98c257 100644 --- a/toys/pending/mdev.c +++ b/toys/pending/mdev.c @@ -30,7 +30,6 @@ config MDEV_CONF */ #include "toys.h" -#include "lib/xregcomp.h" // todo, open() block devices to trigger partition scanning. diff --git a/toys/pending/mkpasswd.c b/toys/pending/mkpasswd.c index 87b239e0..a46c514c 100644 --- a/toys/pending/mkpasswd.c +++ b/toys/pending/mkpasswd.c @@ -22,7 +22,6 @@ config MKPASSWD #define FOR_mkpasswd #include "toys.h" -#include "lib/xregcomp.h" GLOBALS( long pfd; diff --git a/toys/pending/sed.c b/toys/pending/sed.c index 0ce25aca..22e07c07 100644 --- a/toys/pending/sed.c +++ b/toys/pending/sed.c @@ -23,7 +23,6 @@ config SED #define FOR_sed #include "toys.h" -#include "lib/xregcomp.h" GLOBALS( struct arg_list *files; diff --git a/toys/posix/nl.c b/toys/posix/nl.c index b462cddd..c7e7b92c 100644 --- a/toys/posix/nl.c +++ b/toys/posix/nl.c @@ -27,7 +27,6 @@ config NL #define FOR_nl #include "toys.h" -#include "lib/xregcomp.h" GLOBALS( long w; |