diff options
author | Dominick Allen <djallen@librehumanitas.org> | 2024-10-02 11:42:00 -0500 |
---|---|---|
committer | Dominick Allen <djallen@librehumanitas.org> | 2024-10-02 11:42:00 -0500 |
commit | 7eea7cd5e5b451de9db5bd289f8b5d152d5803f5 (patch) | |
tree | d4c948fc00f7c3c63fd9c6c8d85ac1c57c8241b5 /include/fud_memory.hpp | |
parent | 132ddf65fe6e253ebd113036d61c51cd0eb5e827 (diff) |
Separate string view, implement string appending semantics.
Diffstat (limited to 'include/fud_memory.hpp')
-rw-r--r-- | include/fud_memory.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fud_memory.hpp b/include/fud_memory.hpp index d6708cd..41393bd 100644 --- a/include/fud_memory.hpp +++ b/include/fud_memory.hpp @@ -28,7 +28,7 @@ namespace fud { extern void* fudAlloc(size_t size); -extern void* fudRealloc(size_t size); +extern void* fudRealloc(void* ptr, size_t size); extern void fudFree(void* ptr); // An allocating function which returns null on failure. |