summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2016-08-13 16:18:07 +0200
committertomsmeding <tom.smeding@gmail.com>2016-08-13 16:18:07 +0200
commit97d3fc0e062a6318f43a4585aea672ce9847794f (patch)
tree84faa607c518e0e6e97645717b8aff4ce8f4445c
parent973294d700243326280e62048b426e1cfdd06711 (diff)
Add -v note in usage()
-rw-r--r--bfcomp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bfcomp.c b/bfcomp.c
index 9de8cf2..2e25202 100644
--- a/bfcomp.c
+++ b/bfcomp.c
@@ -32,7 +32,8 @@ void usage(const char *argv0){
"in <dstfile>.\n"
"Uses nasm for assembling and gcc for linking.\n"
" -h Show help\n"
- " -m <memsize> Specify amount of tape cells (bytes) for the BF code\n",
+ " -m <memsize> Specify amount of tape cells (bytes) for the BF code\n"
+ " -v Show more info about the compile process\n",
argv0);
}