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/watch.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/watch.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/watch.c b/bin/watch.c index 4b1bfb4d..bb432815 100644 --- a/bin/watch.c +++ b/bin/watch.c @@ -1,6 +1,4 @@ -/* Execute a command each time files change. - * - * 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/>. */ +// Execute a command each time files change. + #include <sys/types.h> #include <err.h> |