diff options
author | June McEnroe <programble@gmail.com> | 2017-09-06 15:19:24 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-09-06 15:19:24 -0400 |
commit | 5cec10630aa2fbe6f21d6576587f97f784d3a819 (patch) | |
tree | df4ab98640210b38f6122942b2c05997415388d6 /bin/jrp.c | |
parent | Fix bin/Makefile FreeBSD compatibility (diff) | |
download | src-5cec10630aa2fbe6f21d6576587f97f784d3a819.tar.gz src-5cec10630aa2fbe6f21d6576587f97f784d3a819.zip |
Move C file description comments
Comments are ugly this is why I don't put them in my code ;)
Diffstat (limited to '')
-rw-r--r-- | bin/jrp.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/jrp.c b/bin/jrp.c index 960696e1..049dc7d4 100644 --- a/bin/jrp.c +++ b/bin/jrp.c @@ -1,6 +1,4 @@ -/* JIT RPN calculator. - * - * Copyright (c) 2017, Curtis McEnroe <programble@gmail.com> +/* Copyright (c) 2017, Curtis McEnroe <programble@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by @@ -16,6 +14,8 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +// JIT RPN calculator. + #include <err.h> #include <histedit.h> #include <stdbool.h> |