diff options
author | Rob Landley <rob@landley.net> | 2012-03-09 20:23:08 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-03-09 20:23:08 -0600 |
commit | 35cb740415073fc64d17a22f93955ddc436c72ae (patch) | |
tree | 40a3286bc3db02715e3ec06591eadc56977732a1 /toys | |
parent | 137bf3449a7bd235ecdce3c9c2fb4f03b84d2d83 (diff) | |
download | toybox-35cb740415073fc64d17a22f93955ddc436c72ae.tar.gz |
Work around glibc regression by including Linux header directly.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/unshare.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/toys/unshare.c b/toys/unshare.c index 8257b7c8..fceee522 100644 --- a/toys/unshare.c +++ b/toys/unshare.c @@ -26,6 +26,7 @@ config UNSHARE */ #include "toys.h" +#include <linux/sched.h> void unshare_main(void) { |