1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Use __syscall_ulong_t in bits/ipc.h

This commit is contained in:
H.J. Lu
2012-05-16 13:01:32 -07:00
parent d5e0511985
commit a637753a56
2 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1995-1999, 2000 Free Software Foundation, Inc.
/* Copyright (C) 1995-2012 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@ -50,6 +50,6 @@ struct ipc_perm
unsigned short int __pad1;
unsigned short int __seq; /* Sequence number. */
unsigned short int __pad2;
unsigned long int __unused1;
unsigned long int __unused2;
__syscall_ulong_t __unused1;
__syscall_ulong_t __unused2;
};