diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2020-07-10 12:08:40 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2020-07-10 12:08:40 -0400 |
commit | 72c4d0a78c067806a6341a5fc5acb33d5805896b (patch) | |
tree | 2f2bdda14e247915b27e73b353d32501886dca42 /runv | |
parent | e684e1bce6ac55607d0612a3f99031c7dfbdfc90 (diff) |
big changes to the way for loops work
Diffstat (limited to 'runv')
-rwxr-xr-x | runv | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -12,8 +12,8 @@ fi valgrind $FLAGS --track-origins=yes --exit-on-first-error=yes --error-exitcode=1 --malloc-fill=0xcd --free-fill=0xef --num-callers=100 ./toc $tocf || exit 1 if [ "$1" = "c" ]; then - gcc out.c -g -Wno-builtin-declaration-mismatch && ./a.out + ./test elif [ "$1" = "pc" ]; then - cat out.c + cat test.c fi rm vgcore* 2> /dev/null |