about summary refs log tree commit diff
path: root/src/base
diff options
context:
space:
mode:
Diffstat (limited to 'src/base')
-rw-r--r--src/base/detect.h3
-rw-r--r--src/base/math.h3
-rw-r--r--src/base/system.c3
-rw-r--r--src/base/system.h3
-rw-r--r--src/base/tl/algorithm.h2
-rw-r--r--src/base/tl/allocator.h2
-rw-r--r--src/base/tl/array.h2
-rw-r--r--src/base/tl/base.h2
-rw-r--r--src/base/tl/range.h2
-rw-r--r--src/base/tl/sorted_array.h2
-rw-r--r--src/base/tl/string.h2
-rw-r--r--src/base/vmath.h3
12 files changed, 24 insertions, 5 deletions
diff --git a/src/base/detect.h b/src/base/detect.h
index 04cca2d9..ca2efb9c 100644
--- a/src/base/detect.h
+++ b/src/base/detect.h
@@ -1,4 +1,5 @@
-/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef BASELIB_FILE_CONFIG_H
 #define BASELIB_FILE_CONFIG_H
 
diff --git a/src/base/math.h b/src/base/math.h
index f3ba2ea8..1234f681 100644
--- a/src/base/math.h
+++ b/src/base/math.h
@@ -1,4 +1,5 @@
-/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef BASE_MATH_H
 #define BASE_MATH_H
 
diff --git a/src/base/system.c b/src/base/system.c
index b7f76a88..9cc27836 100644
--- a/src/base/system.c
+++ b/src/base/system.c
@@ -1,4 +1,5 @@
-/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #include <stdlib.h>
 #include <stdio.h>
 #include <stdarg.h>
diff --git a/src/base/system.h b/src/base/system.h
index e5ce1484..fb249588 100644
--- a/src/base/system.h
+++ b/src/base/system.h
@@ -1,4 +1,5 @@
-/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 
 /*
 	Title: OS Abstraction
diff --git a/src/base/tl/algorithm.h b/src/base/tl/algorithm.h
index 32c2da73..4a165db0 100644
--- a/src/base/tl/algorithm.h
+++ b/src/base/tl/algorithm.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef TL_FILE_ALGORITHM_HPP
 #define TL_FILE_ALGORITHM_HPP
 
diff --git a/src/base/tl/allocator.h b/src/base/tl/allocator.h
index 3baa1c19..f6d8fc34 100644
--- a/src/base/tl/allocator.h
+++ b/src/base/tl/allocator.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef TL_FILE_ALLOCATOR_HPP
 #define TL_FILE_ALLOCATOR_HPP
 
diff --git a/src/base/tl/array.h b/src/base/tl/array.h
index 14c83295..ebc276fc 100644
--- a/src/base/tl/array.h
+++ b/src/base/tl/array.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef TL_FILE_ARRAY_HPP
 #define TL_FILE_ARRAY_HPP
 
diff --git a/src/base/tl/base.h b/src/base/tl/base.h
index c202de79..59951c68 100644
--- a/src/base/tl/base.h
+++ b/src/base/tl/base.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef TL_FILE_BASE_HPP
 #define TL_FILE_BASE_HPP
 
diff --git a/src/base/tl/range.h b/src/base/tl/range.h
index 1c63e73c..3c1c89f3 100644
--- a/src/base/tl/range.h
+++ b/src/base/tl/range.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef TL_FILE_RANGE_HPP
 #define TL_FILE_RANGE_HPP
 
diff --git a/src/base/tl/sorted_array.h b/src/base/tl/sorted_array.h
index 95f06157..7ca7ff8d 100644
--- a/src/base/tl/sorted_array.h
+++ b/src/base/tl/sorted_array.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef TL_FILE_SORTED_ARRAY_HPP
 #define TL_FILE_SORTED_ARRAY_HPP
 
diff --git a/src/base/tl/string.h b/src/base/tl/string.h
index 155ca2a4..96c2dc66 100644
--- a/src/base/tl/string.h
+++ b/src/base/tl/string.h
@@ -1,3 +1,5 @@
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef TL_FILE_STRING_HPP
 #define TL_FILE_STRING_HPP
 
diff --git a/src/base/vmath.h b/src/base/vmath.h
index 2be3e6eb..e4443da2 100644
--- a/src/base/vmath.h
+++ b/src/base/vmath.h
@@ -1,4 +1,5 @@
-/* copyright (c) 2007 magnus auvinen, see licence.txt for more info */
+/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
+/* If you are missing that file, acquire a complete release at teeworlds.com.                */
 #ifndef BASE_VMATH_H
 #define BASE_VMATH_H