diff options
author | Al Viro <viro@ZenIV.linux.org.uk> | 2012-10-08 06:27:32 +0400 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2012-10-10 00:28:45 +0400 |
commit | 37185b33240870719b6b5913a46e6a441f1ae96f (patch) | |
tree | 60a0f5adbb3d6b879a504defeddb3ff1ecff77d7 /arch/um/include/shared/longjmp.h | |
parent | 382d95fdfa7ff5c54f6495c597c7cf6d124e404b (diff) | |
download | linux-37185b33240870719b6b5913a46e6a441f1ae96f.tar.xz |
um: get rid of pointless include "..." where include <...> will do
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'arch/um/include/shared/longjmp.h')
-rw-r--r-- | arch/um/include/shared/longjmp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/include/shared/longjmp.h b/arch/um/include/shared/longjmp.h index e860bc5848e0..9bdddf4c405b 100644 --- a/arch/um/include/shared/longjmp.h +++ b/arch/um/include/shared/longjmp.h @@ -1,8 +1,8 @@ #ifndef __UML_LONGJMP_H #define __UML_LONGJMP_H -#include "sysdep/archsetjmp.h" -#include "os.h" +#include <sysdep/archsetjmp.h> +#include <os.h> extern int setjmp(jmp_buf); extern void longjmp(jmp_buf, int); |