diff options
| author | Jan-Benedict Glaw <jbglaw@lug-owl.de> | 2002-05-28 03:01:59 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-05-28 03:01:59 -0700 |
| commit | 3e7e1382b080f625b23072c3191cd66fdb63308c (patch) | |
| tree | af35c44e21bf54fd5a5f26fcdba382f35249e86d | |
| parent | 1df703fa9bbe720fcc9b9ddc400774722bccd08c (diff) | |
[PATCH] Trivial compile fix to fs/binfmt_em86.c
Please apply this patch to let binfmt_em86.c compile again.
| -rw-r--r-- | fs/binfmt_em86.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/binfmt_em86.c b/fs/binfmt_em86.c index d651e875b01e..019c6ed6e61e 100644 --- a/fs/binfmt_em86.c +++ b/fs/binfmt_em86.c @@ -16,7 +16,9 @@ #include <linux/binfmts.h> #include <linux/elf.h> #include <linux/init.h> +#include <linux/fs.h> #include <linux/file.h> +#include <linux/errno.h> #define EM86_INTERP "/usr/bin/em86" |
