Skip to content
Snippets Groups Projects
Commit 3cbc24d7 authored by Jaewon Choi's avatar Jaewon Choi
Browse files

Rename signal.* to signal_handlers.*

parent 6193e760
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@
CC=gcc -std=c99
CFLAGS=-I./src -I./include
LIB=-lpthread
OBJ=./src/utils.o ./src/commands.o ./src/built_in.o ./src/signal.o
OBJ=./src/utils.o ./src/commands.o ./src/built_in.o ./src/signal_handlers.o
%.o: %.c $(DEPS)
$(CC) -c -o $@ $< $(CFLAGS)
......
File moved
#include "signal.h"
#include "signal_handlers.h"
void catch_sigint(int signalNo)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment