Add doxygen file headers

This commit is contained in:
Justin R. Cutler 2016-04-02 16:37:31 -04:00
parent e1a83ea77a
commit 3604f3557b
3 changed files with 12 additions and 0 deletions

View File

@ -3,6 +3,10 @@
* Licensed under the MIT License. See LICENSE file in the project root for
* full license information.
*/
/** @file
* coroutine interface implementation
* @author Justin R. Cutler <justin.r.cutler@gmail.com>
*/
/* stack_t (in ucontext.h) */
#define _BSD_SOURCE

View File

@ -3,6 +3,10 @@
* Licensed under the MIT License. See LICENSE file in the project root for
* full license information.
*/
/** @file
* coroutine interface test
* @author Justin R. Cutler <justin.r.cutler@gmail.com>
*/
/* printf, perror */
#include <stdio.h>

View File

@ -3,6 +3,10 @@
* Licensed under the MIT License. See LICENSE file in the project root for
* full license information.
*/
/** @file
* coroutine interface definition
* @author Justin R. Cutler <justin.r.cutler@gmail.com>
*/
#ifndef THREADLESS_COROUTINE_H
#define THREADLESS_COROUTINE_H