mirror of
https://github.com/recp/cglm.git
synced 2025-10-03 08:41:55 +00:00
18 lines
355 B
C
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 */
|