-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheaders.h
43 lines (38 loc) · 801 Bytes
/
headers.h
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
#ifndef __HEADERS_H
#define __HEADERS_H
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/utsname.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <string.h>
#include <dirent.h>
#include <pwd.h>
#include <grp.h>
#include <time.h>
#include <sys/wait.h>
#include <fcntl.h>
#include <time.h>
#include <sys/select.h>
#include <signal.h>
#include "get_prompt.h"
#include "echo.h"
#include "change_dir.h"
#include "ls.h"
#include "pinfo.h"
#include "bg.h"
#include "fg.h"
#include "history.h"
#include "exit.h"
#include "nightswatch.h"
#include "envset.h"
#include "signals.h"
#include "redirection.h"
struct bg_process* first_bg;
char fg_command[10024];
int* current_fg_pid;
int* second_dir_has_happened;
int* our_gpid;
char last_working_dir_that_was_in[1000];
#endif