diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-13 14:41:45 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-05-13 14:41:45 +0200 |
commit | 6036bca03b664ab423537d0644d473c47c5acddb (patch) | |
tree | a64a0b114b15d01f09bec681628c9a487a0489f2 /src/command.h | |
parent | rename Makefile parameters & update README (diff) | |
download | cimple-6036bca03b664ab423537d0644d473c47c5acddb.tar.gz cimple-6036bca03b664ab423537d0644d473c47c5acddb.zip |
fix unnecessary #include-s
Diffstat (limited to '')
-rw-r--r-- | src/command.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command.h b/src/command.h index dc798d2..d08902e 100644 --- a/src/command.h +++ b/src/command.h @@ -10,7 +10,7 @@ #include "msg.h" -#include <stdlib.h> +#include <stddef.h> typedef int (*cmd_handler)(int conn_fd, const struct msg *request, void *ctx, struct msg **response); |