Skip to content
Snippets Groups Projects
Commit ef3cdde9 authored by Hauke Petersen's avatar Hauke Petersen
Browse files

cpu/atmega_common: fixed doxygen issues

parent 37d4f443
No related branches found
No related tags found
No related merge requests found
...@@ -28,9 +28,8 @@ ...@@ -28,9 +28,8 @@
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. */ POSSIBILITY OF SUCH DAMAGE. */
#ifndef ERRNO_H #ifndef ERRNO_H
#define ERRNO_H_ 1 #define ERRNO_H
/** /**
* @addtogroup cpu_atmega_common * @addtogroup cpu_atmega_common
...@@ -55,6 +54,9 @@ ...@@ -55,6 +54,9 @@
extern "C" { extern "C" {
#endif #endif
/**
* @brief Export errno value
*/
extern int errno; extern int errno;
#ifdef __cplusplus #ifdef __cplusplus
......
...@@ -16,9 +16,13 @@ ...@@ -16,9 +16,13 @@
extern "C" { extern "C" {
#endif #endif
/**
* @brief Definition of struct timeval for the atmega
*
*/
struct timeval { struct timeval {
time_t tv_sec; time_t tv_sec; /**< seconds */
suseconds_t tv_usec; suseconds_t tv_usec; /**< microseconds */
}; };
#ifdef __cplusplus #ifdef __cplusplus
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment