diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-26 01:21:12 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-04-26 01:21:12 +0330 |
commit | 85bfc724dd2bdaa2259512c1b8ab21f7dfeca8f1 (patch) | |
tree | 0b9075ba9bf70aca9cdf36e5d909b161460b19a8 /src/utils/memory.h | |
parent | 6edcfb23ffd49e937395b710f7c6213b2c0d93cf (diff) |
clean up
Diffstat (limited to 'src/utils/memory.h')
-rw-r--r-- | src/utils/memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/memory.h b/src/utils/memory.h index 29bd3db..132fd2b 100644 --- a/src/utils/memory.h +++ b/src/utils/memory.h @@ -3,5 +3,5 @@ #include <stddef.h> extern void *a404m_malloc(size_t size); -extern void *a404m_realloc(void *restrict pointer, size_t size); +extern void *a404m_realloc(void *pointer, size_t size); extern size_t a404m_malloc_usable_size(void *pointer); |