mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
23f40a94d8
Commit 607ca46e97
("UAPI: (Scripted) Disintegrate include/linux") left
behind some empty conditional blocks. Since they are useless and may
cause a reader to wonder whether something is missing, remove them.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
17 lines
315 B
C
17 lines
315 B
C
#ifndef __A_OUT_GNU_H__
|
|
#define __A_OUT_GNU_H__
|
|
|
|
#include <uapi/linux/a.out.h>
|
|
|
|
#ifndef __ASSEMBLY__
|
|
#ifdef linux
|
|
#include <asm/page.h>
|
|
#if defined(__i386__) || defined(__mc68000__)
|
|
#else
|
|
#ifndef SEGMENT_SIZE
|
|
#define SEGMENT_SIZE PAGE_SIZE
|
|
#endif
|
|
#endif
|
|
#endif
|
|
#endif /*__ASSEMBLY__ */
|
|
#endif /* __A_OUT_GNU_H__ */
|