summaryrefslogtreecommitdiff
path: root/pullreqd.c
diff options
context:
space:
mode:
authormrb0nk500 <b0nk@b0nk.xyz>2021-06-12 19:19:15 -0400
committermrb0nk500 <b0nk@b0nk.xyz>2021-06-12 19:19:15 -0400
commit160275478437d8b4e5c45929f9e864d7a6c93ec3 (patch)
tree4d63c4ae6f75cc0729125af66ef79b429df021dc /pullreqd.c
parent85b17f3d217aea2380eb81b8a77c9a668db0652b (diff)
Remove unecessary includes.
This is because I now have these includes in `network.h`.
Diffstat (limited to 'pullreqd.c')
-rw-r--r--pullreqd.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/pullreqd.c b/pullreqd.c
index 5e403a9..a4a96b0 100644
--- a/pullreqd.c
+++ b/pullreqd.c
@@ -1,20 +1,13 @@
-#include <arpa/inet.h>
-#include <errno.h>
-#include <netdb.h>
-#include <netinet/in.h>
#include <signal.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
-#include <sys/socket.h>
-#include <sys/stat.h>
-#include <sys/types.h>
-#include <sys/un.h>
#include <syslog.h>
#include <unistd.h>
#include "config.h"
#include "macros.h"
+#include "network.h"
#define UNIX_PATH_MAX 108