mirror of
https://github.com/monero-project/monero.git
synced 2025-08-22 04:09:38 -04:00
src: fix clangd warnings
This commit is contained in:
parent
02fba21846
commit
d106e21b74
37 changed files with 606 additions and 519 deletions
|
@ -30,8 +30,16 @@
|
|||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
#include <cstddef>
|
||||
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
#else // C compiler
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#endif // __cplusplus
|
||||
|
||||
void *aligned_malloc(size_t bytes, size_t align);
|
||||
void *aligned_realloc(void *ptr, size_t bytes, size_t align);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue