summaryrefslogtreecommitdiff
path: root/src/utils/memory.c
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-26 01:21:12 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-04-26 01:21:12 +0330
commit85bfc724dd2bdaa2259512c1b8ab21f7dfeca8f1 (patch)
tree0b9075ba9bf70aca9cdf36e5d909b161460b19a8 /src/utils/memory.c
parent6edcfb23ffd49e937395b710f7c6213b2c0d93cf (diff)
clean up
Diffstat (limited to 'src/utils/memory.c')
-rw-r--r--src/utils/memory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/memory.c b/src/utils/memory.c
index bf3de92..0c9740c 100644
--- a/src/utils/memory.c
+++ b/src/utils/memory.c
@@ -10,7 +10,7 @@ void *a404m_malloc(size_t size) {
}
}
-void *a404m_realloc(void *restrict pointer, size_t size) {
+void *a404m_realloc(void *pointer, size_t size) {
if (size == 0) {
free(pointer);
return NULL;