Done as a script (well, a single "git mv" actually) on request from Yoshinori Sato as a way to avoid a huge diff.
Requested-by: Yoshinori Sato Cc: Sam Ravnborg Cc: Andrew Morton Signed-off-by: Linus Torvalds
#ifndef _H8300_UCONTEXT_H #define _H8300_UCONTEXT_H struct ucontext { unsigned long uc_flags; struct ucontext *uc_link; stack_t uc_stack; struct sigcontext uc_mcontext; sigset_t uc_sigmask; /* mask last for extensibility */ }; #endif