1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
* sysdeps/unix/sysv/sysv4/solaris2/bits/types.h: Include
	features.h and stddef.h.
	* sysdeps/unix/sysv/sysv4/solaris2/bits/sigstack.h (struct
	sigaltstack): Move ss_size field at the end.
	Patches by Jeff Bailey <jbailey@nisa.net>.
This commit is contained in:
Ulrich Drepper
1998-12-18 16:03:11 +00:00
parent 51c68755af
commit c730d6780f
4 changed files with 38 additions and 1 deletions

View File

@@ -50,6 +50,6 @@ enum
typedef struct sigaltstack
{
__ptr_t ss_sp;
size_t ss_size;
int ss_flags;
size_t ss_size;
} stack_t;