doc: fix quat_math documentation

This commit is contained in:
Oleg Hahm 2014-12-06 01:27:23 +01:00
parent 1288b3f9cb
commit 364e60d84c
1 changed files with 5 additions and 5 deletions

View File

@ -82,15 +82,15 @@ typedef unsigned long long u_quad_t;
#define QUAD_MAX (LLONG_MAX)
#define UQUAD_MAX (ULLONG_MAX)
/*
/**
* Depending on the desired operation, we view a `long long' (aka quad_t) in
* one or more of the following formats.
*/
union uu {
quad_t q; /* as a (signed) quad */
u_quad_t uq; /* as an unsigned quad */
int sl[2]; /* as two signed ints */
u_int ul[2]; /* as two unsigned ints */
quad_t q; /**< as a (signed) quad */
u_quad_t uq; /**< as an unsigned quad */
int sl[2]; /**< as two signed ints */
u_int ul[2]; /**< as two unsigned ints */
};
/*