-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinclude.h
More file actions
51 lines (43 loc) · 870 Bytes
/
include.h
File metadata and controls
51 lines (43 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#ifndef INCLUDES_H
#define INCLUDES_H
#define _REENTRANT
#define _GNU_SOURCE //splice
// stdlib includes
#include <assert.h>
#include <stddef.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
// System includes
#include <arpa/inet.h>
#include <fcntl.h>
#include <dirent.h>
#include <fcntl.h>
#include <netdb.h>
#include <netinet/in.h>
#include <pthread.h>
#include <signal.h>
#include <sys/errno.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>
// Shared memory
#include <sys/shm.h>
// Project files
// Data structures
#include "list.h"
#include "shared.h"
// Networking
#include "net.h"
// Threading
#include "cthreads.h"
#include "ccontrol.h"
#include "pthreads.h"
#include "pcontrol.h"
#include "sthreads.h"
#include "scontrol.h"
#endif