linux-user: Fix broken header guard in syscall_defs.h
Found with scripts/clean-header-guards.pl. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
59e96bcbf9
commit
1b3c4fdf30
@ -5,8 +5,7 @@
|
|||||||
necessary */
|
necessary */
|
||||||
|
|
||||||
#ifndef SYSCALL_DEFS_H
|
#ifndef SYSCALL_DEFS_H
|
||||||
#define SYSCALL_DEFS_H 1
|
#define SYSCALL_DEFS_H
|
||||||
|
|
||||||
|
|
||||||
#include "syscall_nr.h"
|
#include "syscall_nr.h"
|
||||||
|
|
||||||
@ -2577,8 +2576,6 @@ struct target_ucred {
|
|||||||
uint32_t gid;
|
uint32_t gid;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
|
||||||
|
|
||||||
typedef int32_t target_timer_t;
|
typedef int32_t target_timer_t;
|
||||||
|
|
||||||
#define TARGET_SIGEV_MAX_SIZE 64
|
#define TARGET_SIGEV_MAX_SIZE 64
|
||||||
@ -2620,3 +2617,5 @@ struct target_user_cap_data {
|
|||||||
uint32_t permitted;
|
uint32_t permitted;
|
||||||
uint32_t inheritable;
|
uint32_t inheritable;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user