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/net.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/net.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,8 +8,8 @@ #ifndef __NET_H__ #define __NET_H__ +#include <stddef.h> #include <stdint.h> -#include <stdlib.h> int net_bind(const char *port); int net_accept(int fd); |