RosettaCodeData/Task/Arrays/C/arrays-1.c

6 lines
191 B
C
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
#ifdef _MSC_VER
#define INLINE __force_inline __flatten __declspec(nothrow) __declspec(noalias) inline
#else
#define INLINE __attribute__((always_inline,flatten,nothrow,const)) inline
#endif