Files
cglm/include/cglm-common.h
Recep Aslantas 6c6418d19a Initial Commit
2016-09-11 12:29:22 +03:00

18 lines
355 B
C

/*
* 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 */