mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-26 00:57:39 +01:00
Include <inttypes.h> instead of <stdint.h>. HP-UX doesn't have the latter.
(unw_tdep_save_loc_t): Define a dummy member, so we're ANSI-C compliant (which doesn't allow empty structs). (Logical change 1.63)
This commit is contained in:
parent
58e0e100d1
commit
47c70d7858
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|||
#ifndef LIBUNWIND_H
|
||||
#define LIBUNWIND_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <inttypes.h>
|
||||
#include <ucontext.h>
|
||||
|
||||
#ifdef ia64
|
||||
|
@ -121,6 +121,7 @@ typedef struct unw_tdep_save_loc
|
|||
we could use this to specify the bit number in which a NaT bit
|
||||
gets saved. For now, nobody wants to know this, so it's not
|
||||
currently implemented. */
|
||||
char dummy; /* ANSI C doesn't allow empty structs... */
|
||||
}
|
||||
unw_tdep_save_loc_t;
|
||||
|
||||
|
|
Loading…
Reference in a new issue