From ad5bd03d7d2bbd36076aae3dcd66d4061b6f8a0e Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 7 May 2015 21:32:59 -0400 Subject: [PATCH] Edited header comment block --- runtime-main.h | 3 ++- runtime.c | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/runtime-main.h b/runtime-main.h index c3bff183..b0ba5a45 100644 --- a/runtime-main.h +++ b/runtime-main.h @@ -3,7 +3,8 @@ * Copyright (c) 2014, Justin Ethier * All rights reserved. * - * This file contains the C runtime used by compiled programs. + * This file contains the C runtime code used only by the main program module. + * May want to consider migrating this into another runtime module. */ #ifndef CYCLONE_RUNTIME_MAIN_H diff --git a/runtime.c b/runtime.c index cd47b355..ad98103e 100644 --- a/runtime.c +++ b/runtime.c @@ -1,3 +1,11 @@ +/** + * Cyclone Scheme + * Copyright (c) 2014, Justin Ethier + * All rights reserved. + * + * This file contains the C runtime used by compiled programs. + */ + #include "cyclone.h" #include "runtime.h"