diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-08-31 14:45:52 +0300 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-08-31 14:45:52 +0300 |
commit | 752675bc0c9ba6082038bc25cefe838c1f58b5de (patch) | |
tree | 358c76ccf2a6195d7f6ab1e4d72b40d32bbb75af /fptr_ast/ref.c | |
parent | a0c6ff2c222beb72493f2e40ed27492061dfdf22 (diff) | |
download | playground-752675bc0c9ba6082038bc25cefe838c1f58b5de.tar.gz playground-752675bc0c9ba6082038bc25cefe838c1f58b5de.zip |
free resources
Diffstat (limited to 'fptr_ast/ref.c')
-rw-r--r-- | fptr_ast/ref.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fptr_ast/ref.c b/fptr_ast/ref.c index 6169a25..c428566 100644 --- a/fptr_ast/ref.c +++ b/fptr_ast/ref.c @@ -30,4 +30,8 @@ int main() init_matrices(A, B); matrix_mult(A, B, C); printf("%zu\n", hash(C)); + + free(A); + free(B); + free(C); } |