From fc9211c7774a0d2d755addfb82b7a02047a6568a Mon Sep 17 00:00:00 2001 From: Sworddragon Date: Sat, 20 Nov 2010 11:37:14 +0100 Subject: Updated copyrights --- src/base/detect.h | 3 ++- src/base/math.h | 3 ++- src/base/system.c | 3 ++- src/base/system.h | 3 ++- src/base/tl/algorithm.h | 2 ++ src/base/tl/allocator.h | 2 ++ src/base/tl/array.h | 2 ++ src/base/tl/base.h | 2 ++ src/base/tl/range.h | 2 ++ src/base/tl/sorted_array.h | 2 ++ src/base/tl/string.h | 2 ++ src/base/vmath.h | 3 ++- 12 files changed, 24 insertions(+), 5 deletions(-) (limited to 'src/base') 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 #include #include 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 -- cgit 1.4.1