diff options
-rw-r--r-- | Makefile | 4 | ||||
-rw-r--r-- | cat.h | 1 | ||||
-rw-r--r-- | cfn.c | 3 |
3 files changed, 6 insertions, 2 deletions
@@ -1,8 +1,8 @@ CC = gcc -CFLAGS = -ansi -pedantic-errors +CFLAGS = -Wall -Wpedantic -ansi -pedantic-errors cat : main.o cfn.o cfd.o - gcc -o cat main.o cfn.o cfd.o + gcc $(CFLAGS) -o cat main.o cfn.o cfd.o clean : rm -f -- cat *.o @@ -7,6 +7,7 @@ #include <fcntl.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <sys/stat.h> #include <sys/types.h> #include <unistd.h> @@ -21,5 +21,8 @@ int cfn(const char *fn, void *buf) { perror(__FUNCTION__); return -1; } + + /* Done, assume success */ + return 0; } |