Add missing include directive
This commit is contained in:
parent
18d54fc07b
commit
e180d7720e
3 changed files with 6 additions and 0 deletions
|
|
@ -9,6 +9,8 @@
|
|||
/// \file matrix.c
|
||||
/// \brief Fixed-point 3D vector
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "matrix.h"
|
||||
|
||||
static matrix_t identitymatrix = {{
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@
|
|||
/// \file quaternion.c
|
||||
/// \brief Fixed-point 3D vector
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "quaternion.h"
|
||||
#include "vector3d.h"
|
||||
#include "matrix.h"
|
||||
|
|
|
|||
|
|
@ -9,6 +9,8 @@
|
|||
/// \file vector3d.c
|
||||
/// \brief Fixed-point 3D vector
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#include "vector3d.h"
|
||||
#include "r_main.h" // R_PointToDist2
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue