Add some prototypes to fix -Wstrict-prototypes. NFC

This commit is contained in:
Fangrui Song 2022-04-09 09:46:39 -07:00
parent 38c502b6c7
commit 958251ef76
2 changed files with 4 additions and 4 deletions

View File

@ -36,6 +36,6 @@
#endif
extern void *__libunwind_cet_get_registers(unw_cursor_t *);
extern void *__libunwind_cet_get_jump_target();
extern void *__libunwind_cet_get_jump_target(void);
#endif

View File

@ -188,9 +188,9 @@
#ifdef __cplusplus
extern "C" {
#endif
extern bool logAPIs();
extern bool logUnwinding();
extern bool logDWARF();
extern bool logAPIs(void);
extern bool logUnwinding(void);
extern bool logDWARF(void);
#ifdef __cplusplus
}
#endif