Initial Commit

This commit is contained in:
Recep Aslantas
2016-09-11 12:29:22 +03:00
commit 6c6418d19a
8 changed files with 228 additions and 0 deletions

17
include/cglm-common.h Normal file
View File

@@ -0,0 +1,17 @@
/*
* Copyright (c), Recep Aslantas.
*
* MIT License (MIT), http://opensource.org/licenses/MIT
* Full license can be found in the LICENSE file
*/
#ifndef glm_common_h
#define glm_common_h
#if defined(_WIN32)
# define CGLM_INLINE __forceinline
#else
# define CGLM_INLINE static inline __attribute((always_inline))
#endif
#endif /* glm_common_h */