From d7e7bcdc882676085e4244a9faee9259f8f9af7b Mon Sep 17 00:00:00 2001 From: "Justin R. Cutler" Date: Fri, 1 Apr 2016 09:42:12 -0400 Subject: [PATCH] Add copyright/license blocks to source files --- include/threadless/coroutine.h | 5 +++++ lib/coroutine.c | 6 ++++++ test/coroutine.c | 6 ++++++ 3 files changed, 17 insertions(+) diff --git a/include/threadless/coroutine.h b/include/threadless/coroutine.h index 8d688fb..2fc5f55 100644 --- a/include/threadless/coroutine.h +++ b/include/threadless/coroutine.h @@ -1,3 +1,8 @@ +/* threadless.io + * Copyright (c) 2016 Justin R. Cutler + * Licensed under the MIT License. See LICENSE file in the project root for + * full license information. + */ #ifndef THREADLESS_COROUTINE_H #define THREADLESS_COROUTINE_H diff --git a/lib/coroutine.c b/lib/coroutine.c index 4eb2f1e..a9927b3 100644 --- a/lib/coroutine.c +++ b/lib/coroutine.c @@ -1,3 +1,9 @@ +/* threadless.io + * Copyright (c) 2016 Justin R. Cutler + * Licensed under the MIT License. See LICENSE file in the project root for + * full license information. + */ + /* stack_t (in ucontext.h) */ #define _BSD_SOURCE diff --git a/test/coroutine.c b/test/coroutine.c index bf031f9..e8c1929 100644 --- a/test/coroutine.c +++ b/test/coroutine.c @@ -1,3 +1,9 @@ +/* threadless.io + * Copyright (c) 2016 Justin R. Cutler + * Licensed under the MIT License. See LICENSE file in the project root for + * full license information. + */ + /* printf, perror */ #include /* EXIT_SUCCESS, EXIT_FAILURE */