Edited header comment block

This commit is contained in:
Justin Ethier 2015-05-07 21:32:59 -04:00
parent bfb5d92e6a
commit ad5bd03d7d
2 changed files with 10 additions and 1 deletions

View file

@ -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

View file

@ -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"