diff options
author | June McEnroe <programble@gmail.com> | 2017-09-06 14:01:48 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-09-06 14:01:48 -0400 |
commit | f77fae1335c562b720c4a6d4aa710f8627eaaff6 (patch) | |
tree | d027fc65a47a79db548ef797d95539952b17ba42 /bin/jrp.c | |
parent | Rename curtis -> home (diff) | |
download | src-f77fae1335c562b720c4a6d4aa710f8627eaaff6.tar.gz src-f77fae1335c562b720c4a6d4aa710f8627eaaff6.zip |
Move C code to bin, Makefile, AGPL
Diffstat (limited to '')
-rw-r--r--[-rwxr-xr-x] | bin/jrp.c (renamed from home/.bin/jrp.c) | 22 |
1 files changed, 17 insertions, 5 deletions
diff --git a/home/.bin/jrp.c b/bin/jrp.c index 9317ac8e..960696e1 100755..100644 --- a/home/.bin/jrp.c +++ b/bin/jrp.c @@ -1,8 +1,20 @@ -#if 0 -exec cc -Wall -Wextra -pedantic $@ $0 -ledit -o $(dirname $0)/jrp -#endif - -// JIT RPN calculator. +/* JIT RPN calculator. + * + * 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 + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ #include <err.h> #include <histedit.h> |