diff options
| author | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-23 21:26:56 +0200 |
|---|---|---|
| committer | Ákos Kőrösi <korakos99@gmail.com> | 2026-05-23 21:26:56 +0200 |
| commit | 0a9d100af08a2068968264c11013c410330e6ef5 (patch) | |
| tree | 4865cfbe9190546b3ced97f074ba247357b9e229 /src/main.c | |
| parent | 8b660b1ca5c72ca4f2e5cfea282d619ed683446c (diff) | |
change signatures for Channel
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -19,6 +19,8 @@ void execute_string_line(char *line, ShellState *shstate) { int main() { + signal(SIGTTIN, SIG_IGN); + signal(SIGTTOU, SIG_IGN); ShellState shstate = {.shell_vars = make_KeyValMap(256), .aliases = make_KeyValMap(256)}; source_script(RCFILENAME, &shstate); char* line; |
