Skip to content

Commit 4017392

Browse files
committed
Initial commit
0 parents  commit 4017392

File tree

5 files changed

+16
-0
lines changed

5 files changed

+16
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.o
2+
test

Makefile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
2+
test: test.c src/commander.c
3+
$(CC) $^ -std=c99 -o $@
4+
5+
clean:
6+
rm -f test
7+
8+
.PHONY: clean

src/commander.c

Whitespace-only changes.

src/commander.h

Whitespace-only changes.

test.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
int
3+
main(int argc, const char **argv){
4+
5+
return 0;
6+
}

0 commit comments

Comments
 (0)