Skip to content

Commit

Permalink
options/elf: use __extension__ for long long
Browse files Browse the repository at this point in the history
  • Loading branch information
64 committed Oct 20, 2024
1 parent bf7dcc3 commit 6a426ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions options/elf/include/link.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ struct dl_phdr_info {
const char *dlpi_name;
const ElfW(Phdr) *dlpi_phdr;
ElfW(Half) dlpi_phnum;
unsigned long long int dlpi_adds;
unsigned long long int dlpi_subs;
__extension__ unsigned long long int dlpi_adds;
__extension__ unsigned long long int dlpi_subs;
size_t dlpi_tls_modid;
void *dlpi_tls_data;
};
Expand Down

0 comments on commit 6a426ba

Please sign in to comment.