aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/build.c8
-rw-r--r--src/build.h8
-rw-r--r--src/dbg.h8
-rw-r--r--src/filepath.c8
-rw-r--r--src/filepath.h8
-rw-r--r--src/redo-always.c8
-rw-r--r--src/redo-ifchange.c8
-rw-r--r--src/redo.c8
-rw-r--r--src/util.c8
-rw-r--r--src/util.h8
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__
diff --git a/src/dbg.h b/src/dbg.h
index 2f78c6e..a992cb8 100644
--- a/src/dbg.h
+++ b/src/dbg.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>
diff --git a/src/redo.c b/src/redo.c
index 6cf68c3..b6046e2 100644
--- a/src/redo.c
+++ b/src/redo.c
@@ -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>
diff --git a/src/util.c b/src/util.c
index 77df646..5fc6d47 100644
--- a/src/util.c
+++ b/src/util.c
@@ -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>
diff --git a/src/util.h b/src/util.h
index 8ff713c..500ee6e 100644
--- a/src/util.h
+++ b/src/util.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__