diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2015-09-01 15:41:23 +0200 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2015-09-01 15:41:23 +0200 |
commit | 57d4a45a748aa6fd50be6570562b5358297fd096 (patch) | |
tree | 5348ea81707f71259323a7c0904eaf352653781a | |
parent | 9a20c30c166ad7789573376dedad2dda5ebeb646 (diff) | |
download | redo-c-57d4a45a748aa6fd50be6570562b5358297fd096.tar.gz redo-c-57d4a45a748aa6fd50be6570562b5358297fd096.tar.xz redo-c-57d4a45a748aa6fd50be6570562b5358297fd096.zip |
Add header comment
-rw-r--r-- | redo.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/redo.c b/redo.c index dd9cf89..412e846 100644 --- a/redo.c +++ b/redo.c @@ -1,3 +1,13 @@ +/* An implementation of the redo build system + in portable C with zero dependencies + + To the extent possible under law, + Christian Neukirchen <chneukirchen@gmail.com> + has waived all copyright and related or neighboring rights to this work. + + http://creativecommons.org/publicdomain/zero/1.0/ +*/ + /* ##% cc -g -Os -Wall -Wextra -Wwrite-strings -o $STEM $FILE */ @@ -7,6 +17,7 @@ current bugs: dependency-loop: unlimited recursion need locks +todo: test job server properly */ |