From 4b2a4575d0b3002b2292a988e2d38f802f675166 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 13 Jan 2016 23:28:56 -0500 Subject: [PATCH] Link to API files --- docs/User-Manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/User-Manual.md b/docs/User-Manual.md index e2c61f6f..fe39fa71 100644 --- a/docs/User-Manual.md +++ b/docs/User-Manual.md @@ -153,7 +153,7 @@ The arguments to `define-c` are: - `k` - Current continuation, typically the code will call into `k` with a result. - A string containing the C function body. Remember that runtime functions are not allowed to return. In the example above, the `return_closcall1` macro is used to "return" a newly-allocated list to the current continuation. -The Cyclone runtime can be used as a reference for how to write your own C functions. A good starting point would be `runtime.c` and `types.h`. +The Cyclone runtime can be used as a reference for how to write your own C functions. A good starting point would be [`runtime.c`](../runtime.c) and [`types.h`](../include/cyclone/types.h). # Licensing Cyclone is available under the [MIT license](http://www.opensource.org/licenses/mit-license.php).