diff options
author | Roland McGrath <roland@gnu.org> | 2003-02-16 03:55:27 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-02-16 03:55:27 +0000 |
commit | b0104b6f8d369692d0ca8f265b631a87df7eaeed (patch) | |
tree | 555ffba82bc5007faae6c14b52a648d050e09b7d /mach | |
parent | 8321ef15ae777fc7e7a0716e2e931adb099f310a (diff) | |
download | glibc-b0104b6f8d369692d0ca8f265b631a87df7eaeed.tar.gz glibc-b0104b6f8d369692d0ca8f265b631a87df7eaeed.tar.xz glibc-b0104b6f8d369692d0ca8f265b631a87df7eaeed.zip |
* mach/errsystems.awk: Include <errno.h> in generated output.
Diffstat (limited to 'mach')
-rw-r--r-- | mach/errsystems.awk | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mach/errsystems.awk b/mach/errsystems.awk index b01c1bd0eb..a5e93604bc 100644 --- a/mach/errsystems.awk +++ b/mach/errsystems.awk @@ -1,6 +1,8 @@ BEGIN { - print "#include <mach/error.h>\n#include <errorlib.h>"; - print "#define static static const" + print "#include <errno.h>"; + print "#include <mach/error.h>"; + print "#include <errorlib.h>"; + print "#define static static const"; nsubs = split(subsys, subs); while (nsubs > 0) printf "#include \"%s\"\n", subs[nsubs--]; print "\n\n\ |