-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheaders.h
More file actions
48 lines (44 loc) · 903 Bytes
/
headers.h
File metadata and controls
48 lines (44 loc) · 903 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
#ifndef __HEADERS_H_
#define __HEADERS_H_
#define MAX_LEN 10000
// Built in header files
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <dirent.h>
#include <time.h>
#include <pwd.h>
#include <grp.h>
#include <signal.h>
#include <fcntl.h>
#include <netdb.h>
#include <arpa/inet.h>
#include <errno.h>
#include <sys/socket.h>
#include <sys/time.h>
#include <termios.h>
// User defined header files
#include "prompt.h"
#include "warp.h"
#include "peek.h"
#include "utilities.h"
#include "pastevents.h"
#include "input.h"
#include "seek.h"
#include "linked_list.h"
#include "LL2.h"
#include "proclore.h"
#include "ping.h"
#include "activities.h"
#include "signal_handlers.h"
#include "iMan.h"
#include "neonate.h"
#include "bg.h"
#include "fg.h"
#include "sys_commands.h"
#include "pipe.h"
#endif