make pre-compiled funcs c++ compatible

This commit is contained in:
Recep Aslantas
2017-02-05 16:31:47 +03:00
parent 176f5ccf8e
commit 177bb594fd
9 changed files with 54 additions and 0 deletions

View File

@@ -7,6 +7,9 @@
#ifndef cglmc_quat_h
#define cglmc_quat_h
#ifdef __cplusplus
extern "C" {
#endif
#include "../cglm.h"
@@ -55,4 +58,7 @@ glmc_quat_slerp(versor q,
float t,
versor dest);
#ifdef __cplusplus
}
#endif
#endif /* cglmc_quat_h */