From c0b269bc3c8a725c24e84f1accc34612517699ec Mon Sep 17 00:00:00 2001 From: Hammurabi Mendes Date: Mon, 2 Oct 2017 14:19:59 -0400 Subject: [PATCH] Adding licensing and credits information. --- libk/stdarg.h | 7 +++++++ libk/stdint.h | 7 +++++++ libk/stdio.c | 7 +++++++ libk/stdio.h | 7 +++++++ libk/string.c | 7 +++++++ libk/string.h | 7 +++++++ 6 files changed, 42 insertions(+) diff --git a/libk/stdarg.h b/libk/stdarg.h index 8dfa3ae..9fe5e9c 100644 --- a/libk/stdarg.h +++ b/libk/stdarg.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2017, Hammurabi Mendes. + * License: BSD 2-clause + * + * For copyright and credits, please refer to the corresponding files + * in the project's root directory. + */ #ifndef STDARG_H #define STDARG_H diff --git a/libk/stdint.h b/libk/stdint.h index 007d89b..8353f77 100644 --- a/libk/stdint.h +++ b/libk/stdint.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2017, Hammurabi Mendes. + * License: BSD 2-clause + * + * For copyright and credits, please refer to the corresponding files + * in the project's root directory. + */ #ifndef STDINT_H #define STDINT_H diff --git a/libk/stdio.c b/libk/stdio.c index ddbf2ba..cd8ceb9 100644 --- a/libk/stdio.c +++ b/libk/stdio.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2017, Hammurabi Mendes. + * License: BSD 2-clause + * + * For copyright and credits, please refer to the corresponding files + * in the project's root directory. + */ #include "stdarg.h" #include "stdio.h" diff --git a/libk/stdio.h b/libk/stdio.h index 2d240cd..92f7ecf 100644 --- a/libk/stdio.h +++ b/libk/stdio.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2017, Hammurabi Mendes. + * License: BSD 2-clause + * + * For copyright and credits, please refer to the corresponding files + * in the project's root directory. + */ #ifndef STDIO_H #define STDIO_H diff --git a/libk/string.c b/libk/string.c index 71c62ad..9f5ae88 100644 --- a/libk/string.c +++ b/libk/string.c @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2017, Hammurabi Mendes. + * License: BSD 2-clause + * + * For copyright and credits, please refer to the corresponding files + * in the project's root directory. + */ #include "string.h" void *memcpy(void *destination, const void *source, int count) { diff --git a/libk/string.h b/libk/string.h index d5a6dcf..d324bbb 100644 --- a/libk/string.h +++ b/libk/string.h @@ -1,3 +1,10 @@ +/* + * Copyright (c) 2017, Hammurabi Mendes. + * License: BSD 2-clause + * + * For copyright and credits, please refer to the corresponding files + * in the project's root directory. + */ #ifndef STRING_H #define STRING_H