diff options
author | Tharre <tharre3@gmail.com> | 2014-08-16 00:36:53 +0200 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2014-08-16 01:17:51 +0200 |
commit | e0bec031040fd899d1e173a2e4724c375c0846aa (patch) | |
tree | 0727468fa141eec73519ea5ee74f60ed4bb7b2a5 /src | |
parent | e7a1310f6f0c1545ce0e836cc67fed904a635506 (diff) | |
download | redo-e0bec031040fd899d1e173a2e4724c375c0846aa.tar.gz redo-e0bec031040fd899d1e173a2e4724c375c0846aa.tar.xz redo-e0bec031040fd899d1e173a2e4724c375c0846aa.zip |
Add license notice to README and source files
Diffstat (limited to 'src')
-rw-r--r-- | src/build.c | 8 | ||||
-rw-r--r-- | src/build.h | 8 | ||||
-rw-r--r-- | src/dbg.h | 8 | ||||
-rw-r--r-- | src/filepath.c | 8 | ||||
-rw-r--r-- | src/filepath.h | 8 | ||||
-rw-r--r-- | src/redo-always.c | 8 | ||||
-rw-r--r-- | src/redo-ifchange.c | 8 | ||||
-rw-r--r-- | src/redo.c | 8 | ||||
-rw-r--r-- | src/util.c | 8 | ||||
-rw-r--r-- | src/util.h | 8 |
10 files changed, 80 insertions, 0 deletions
diff --git a/src/build.c b/src/build.c index f4e90da..bdb400b 100644 --- a/src/build.c +++ b/src/build.c @@ -1,3 +1,11 @@ +/* build.c + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #define _XOPEN_SOURCE 600 #include <stdbool.h> #include <stdio.h> diff --git a/src/build.h b/src/build.h index 5621c42..ada4df0 100644 --- a/src/build.h +++ b/src/build.h @@ -1,3 +1,11 @@ +/* build.h + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #ifndef __RBUILD_H__ #define __RBUILD_H__ @@ -1,3 +1,11 @@ +/* dbg.h + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #ifndef __DBG_H__ #define __DBG_H__ diff --git a/src/filepath.c b/src/filepath.c index fd6f953..d31a008 100644 --- a/src/filepath.c +++ b/src/filepath.c @@ -1,3 +1,11 @@ +/* filepath.c + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #include <stdbool.h> #include <assert.h> #include <unistd.h> diff --git a/src/filepath.h b/src/filepath.h index f7d6da9..fd80768 100644 --- a/src/filepath.h +++ b/src/filepath.h @@ -1,3 +1,11 @@ +/* filepath.h + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #ifndef __FILEPATH_H__ #define __FILEPATH_H__ diff --git a/src/redo-always.c b/src/redo-always.c index 993d73b..b6e5978 100644 --- a/src/redo-always.c +++ b/src/redo-always.c @@ -1,3 +1,11 @@ +/* redo-always.c + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #include "build.h" int main(int argc, char *argv[]) { diff --git a/src/redo-ifchange.c b/src/redo-ifchange.c index 0b4c1af..c6974ac 100644 --- a/src/redo-ifchange.c +++ b/src/redo-ifchange.c @@ -1,3 +1,11 @@ +/* redo-ifchange.c + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #include <stdio.h> #include <stdbool.h> @@ -1,3 +1,11 @@ +/* redo.c + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #define _XOPEN_SOURCE 600 #include <stdio.h> #include <stdlib.h> @@ -1,3 +1,11 @@ +/* util.c + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #include <stdarg.h> #include <stdint.h> #include <assert.h> @@ -1,3 +1,11 @@ +/* util.h + * + * Copyright (c) 2014 Tharre + * + * This software may be modified and distributed under the terms + * of the MIT license. See the LICENSE file for details. + */ + #ifndef __RUTIL_H__ #define __RUTIL_H__ |