Skip to content

Commit

Permalink
doc: fix quat_math documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegHahm committed Dec 6, 2014
1 parent 1288b3f commit 364e60d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions sys/quad_math/quad.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
};

/*
Expand Down

0 comments on commit 364e60d

Please sign in to comment.