fix some obscure header type size/alignment issues

This commit is contained in:
Rich Felker
2013-03-04 17:05:45 -05:00
parent 99727dad25
commit 8c741783fc
4 changed files with 9 additions and 10 deletions

View File

@ -103,7 +103,7 @@ union sigval {
struct __siginfo {
int si_signo, si_errno, si_code;
union {
char __pad[128 - 3*sizeof(int)];
char __pad[128 - 2*sizeof(int) - sizeof(long)];
struct {
pid_t si_pid;
uid_t si_uid;