diff options
| author | Justin Hibbits <jhibbits@FreeBSD.org> | 2020-09-25 19:04:03 +0000 |
|---|---|---|
| committer | Justin Hibbits <jhibbits@FreeBSD.org> | 2020-09-25 19:04:03 +0000 |
| commit | ebf7855dcd9f8d7f75177da154c5cc3a6e022e4c (patch) | |
| tree | 6e0acb7fc91006025fb48ac6f2f6cbc40a92b00c /sys/mips | |
| parent | fcefa24551b3aef6430dc6a70da808d2d262847a (diff) | |
Notes
Diffstat (limited to 'sys/mips')
| -rw-r--r-- | sys/mips/include/elf.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/mips/include/elf.h b/sys/mips/include/elf.h index a0263bb3a975..acd8f1bf75d5 100644 --- a/sys/mips/include/elf.h +++ b/sys/mips/include/elf.h @@ -105,6 +105,10 @@ typedef struct { /* Auxiliary vector entry on initial stack */ int a_type; /* Entry type. */ union { int a_val; /* Integer value. */ +#ifndef __mips_n64 + void *a_ptr; /* Address. */ + void (*a_fcn)(void); /* Function pointer (not used). */ +#endif } a_un; } Elf32_Auxinfo; |
