1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 07:51:19 +01:00

doc: posix: fix doxygen complaints

This commit is contained in:
Oleg Hahm 2017-03-02 18:12:40 +01:00
parent d559428cc6
commit d48330acbb
2 changed files with 9 additions and 0 deletions

View File

@ -34,6 +34,9 @@
extern "C" {
#endif
/**
* @brief POSIX-specific semaphore type
*/
typedef sema_t sem_t;
/**

View File

@ -22,9 +22,15 @@
#include <time.h>
/**
* @cond INTERNAL
*/
#ifndef __WITH_AVRLIBC__
#define HAVE_MALLOC_H 1
#endif
/**
* @endcond
*/
#include "mutex.h"
#include "sched.h"