diff options
Diffstat (limited to '')
-rw-r--r--[-rwxr-xr-x] | bin/dtch.c (renamed from home/.bin/dtch.c) | 26 |
1 files changed, 17 insertions, 9 deletions
diff --git a/home/.bin/dtch.c b/bin/dtch.c index a37eeeeb..74719fba 100755..100644 --- a/home/.bin/dtch.c +++ b/bin/dtch.c @@ -1,12 +1,20 @@ -#if 0 -set -e -bin=$(dirname $0) -cc -Wall -Wextra -pedantic $@ -lutil -o $bin/dtch $0 -ln -f $bin/dtch $bin/atch -exit -#endif - -// Session attach and detach. +/* Session attach and detach. + * + * 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 <errno.h> |