Skip to content

Commit

Permalink
Add files.
Browse files Browse the repository at this point in the history
  • Loading branch information
tamberg committed Mar 30, 2021
1 parent 26c90e4 commit 252ece7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
9 changes: 9 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
CC=gcc
CFLAGS=-std=c99 -pedantic -pedantic-errors -Werror -Wall -Wextra

all: my_fork

my_copy: my_fork.c

clean:
rm -f my_fork
5 changes: 5 additions & 0 deletions my_fork.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// TODO

int main() {
// TODO
}

0 comments on commit 252ece7

Please sign in to comment.