summary refs log tree commit diff
path: root/bin/jrp.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2017-09-06 14:01:48 -0400
committerJune McEnroe <june@causal.agency>2017-09-06 14:01:48 -0400
commit29877b7b775a0b7dc329c2fe191b8d04eb94aa54 (patch)
tree652ec1da8df4354953897baf9c474d374e133edf /bin/jrp.c
parentPass final NULL to execlp (diff)
downloadsrc-29877b7b775a0b7dc329c2fe191b8d04eb94aa54.tar.gz
src-29877b7b775a0b7dc329c2fe191b8d04eb94aa54.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..9fa3dcc1 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, June 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>