forked from OSchip/llvm-project
Add some prototypes to fix -Wstrict-prototypes. NFC
This commit is contained in:
parent
38c502b6c7
commit
958251ef76
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue