diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-12-05 09:12:01 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-12-05 09:12:01 +0000 |
commit | 31604a65d1939a64e89b4329157cf6bbaf51bc61 (patch) | |
tree | 71eb5431ed5bb849eea49a095fbbae0fa1680a52 /sysdeps/gnu/bits/utmpx.h | |
parent | a6ff34d7b0b59a1ad501dca25558ba21f6e539bb (diff) | |
download | glibc-31604a65d1939a64e89b4329157cf6bbaf51bc61.tar.gz glibc-31604a65d1939a64e89b4329157cf6bbaf51bc61.tar.xz glibc-31604a65d1939a64e89b4329157cf6bbaf51bc61.zip |
Update.
1998-12-05 Ulrich Drepper <drepper@cygnus.com> * sysdeps/gnu/bits/utmp.h: Rename struct exit_status to __exit_status. (struct __exit_status): Define members without leading __ only for __USE_GNU. * sysdeps/gnu/bits/utmpx.h (struct __exit_status): Define members without leading __ only for __USE_GNU.
Diffstat (limited to 'sysdeps/gnu/bits/utmpx.h')
-rw-r--r-- | sysdeps/gnu/bits/utmpx.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sysdeps/gnu/bits/utmpx.h b/sysdeps/gnu/bits/utmpx.h index b7613a1bee..74befe59e7 100644 --- a/sysdeps/gnu/bits/utmpx.h +++ b/sysdeps/gnu/bits/utmpx.h @@ -40,8 +40,13 @@ type is used in `struct utmpx' below. */ struct __exit_status { +#ifdef __USE_GNU + short int e_termination; /* Process termination status. */ + short int e_exit; /* Process exit status. */ +#else short int __e_termination; /* Process termination status. */ short int __e_exit; /* Process exit status. */ +#endif }; |