diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-12 18:35:25 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-06-12 18:35:25 +0330 |
commit | 4dbad24963429bd63e7811621d7595a074a75cec (patch) | |
tree | fffa238f9be8df1cd970fa0d8d782d5cfb95b5e4 | |
parent | d8d12f033831a6ed76049209d52450a7001a6879 (diff) |
remove unused includes
-rw-r--r-- | src/runner/runner.c | 3 | ||||
-rw-r--r-- | src/utils/dl.c | 1 | ||||
-rw-r--r-- | src/utils/dl.h | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/src/runner/runner.c b/src/runner/runner.c index 949d9fb..f376710 100644 --- a/src/runner/runner.c +++ b/src/runner/runner.c @@ -8,8 +8,7 @@ #include <dlfcn.h> #include <ffi.h> #include <stdio.h> -#include <stdlib.h> -#include <string.h> +#include <memory.h> #define doOperation(op0, op1, operator, originalType, type) \ *((originalType *)(op0)->metadata) = \ diff --git a/src/utils/dl.c b/src/utils/dl.c index 1a1c430..3ec6bc4 100644 --- a/src/utils/dl.c +++ b/src/utils/dl.c @@ -2,7 +2,6 @@ #include "utils/memory.h" #include "utils/string.h" #include <dlfcn.h> -#include <stdint.h> #include <stdio.h> #include <stdlib.h> diff --git a/src/utils/dl.h b/src/utils/dl.h index 74cb865..79fc6b4 100644 --- a/src/utils/dl.h +++ b/src/utils/dl.h @@ -1,7 +1,5 @@ #pragma once -#include <stddef.h> - void dynamicLibraryInit(); void dynamicLibraryDestroy(); |