Commit 54f9a398 authored by Jeff Dike's avatar Jeff Dike Committed by Linus Torvalds

[PATCH] uml: include stddef.h correctly

We were not including stddef.h in files that used offsetof.

One file was also including linux/stddef.h for no perciptible reason.
Signed-off-by: default avatarJeff Dike <jdike@addtoit.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 8bcbdf60
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
* Licensed under the GPL * Licensed under the GPL
*/ */
#include "linux/stddef.h"
#include "linux/sched.h" #include "linux/sched.h"
#include "linux/slab.h" #include "linux/slab.h"
#include "linux/types.h" #include "linux/types.h"
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
*/ */
#include <stdio.h> #include <stdio.h>
#include <stddef.h>
#include <errno.h> #include <errno.h>
#include <unistd.h> #include <unistd.h>
#include <linux/stddef.h>
#include "ptrace_user.h" #include "ptrace_user.h"
/* Grr, asm/user.h includes asm/ptrace.h, so has to follow ptrace_user.h */ /* Grr, asm/user.h includes asm/ptrace.h, so has to follow ptrace_user.h */
#include <asm/user.h> #include <asm/user.h>
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#include <signal.h> #include <signal.h>
#include <asm/ptrace.h> #include <asm/ptrace.h>
#include <asm/user.h> #include <asm/user.h>
#include <linux/stddef.h> #include <stddef.h>
#include <sys/poll.h> #include <sys/poll.h>
#define DEFINE(sym, val) \ #define DEFINE(sym, val) \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment