diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-11 06:49:35 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-11 06:49:35 -0800 |
commit | 8226468b168b4b2be530e10a303a739cb401271f (patch) | |
tree | d293b080f78c865843910a0392f0e0c87fd9263c /src/main.c | |
parent | 179af14e3b80109d42288b9a6163901ccfbf39c8 (diff) |
Don't include debug.h in any production code.
It uses some GNU-specific things.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,8 +1,8 @@ #include <stdlib.h> #include <stdio.h> #include <string.h> +#include <errno.h> #include "cmark.h" -#include "debug.h" void print_usage() { |