diff options
author | Aaron Ball <nullspoon@iohq.net> | 2015-06-27 10:26:55 -0600 |
---|---|---|
committer | Aaron Ball <nullspoon@iohq.net> | 2015-06-27 10:27:44 -0600 |
commit | dea9798f377df0f79c366f2553cbda5a3324caf4 (patch) | |
tree | 0ad470527b9e139479914d9304f90042dd599fc2 /Makefile | |
parent | 6b66372a301366629eaac2f6ab606e4c2def497b (diff) | |
download | terminus-dea9798f377df0f79c366f2553cbda5a3324caf4.tar.gz terminus-dea9798f377df0f79c366f2553cbda5a3324caf4.tar.xz |
Removed ctoi function
Oops. Forgot to remove this when switching to atoi. Also removed math.h
include.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ out = terminus all: - cc src/main.c -lm -o $(out) + cc src/main.c -o $(out) debug: make all dbg="-g" |