orcfunctions.h | orcfunctions.h | |||
---|---|---|---|---|
skipping to change at line 66 | skipping to change at line 66 | |||
#endif | #endif | |||
#ifndef ORC_RESTRICT | #ifndef ORC_RESTRICT | |||
#if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L | #if defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L | |||
#define ORC_RESTRICT restrict | #define ORC_RESTRICT restrict | |||
#elif defined(__GNUC__) && __GNUC__ >= 4 | #elif defined(__GNUC__) && __GNUC__ >= 4 | |||
#define ORC_RESTRICT __restrict__ | #define ORC_RESTRICT __restrict__ | |||
#else | #else | |||
#define ORC_RESTRICT | #define ORC_RESTRICT | |||
#endif | #endif | |||
#endif | #endif | |||
void orc_memcpy (void * ORC_RESTRICT d1, const void * s1, int n); | void orc_memcpy (void * ORC_RESTRICT d1, const void * ORC_RESTRICT s1, int n); | |||
void orc_memset (void * ORC_RESTRICT d1, int p1, int n); | void orc_memset (void * ORC_RESTRICT d1, int p1, int n); | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif | #endif | |||
#endif | #endif | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added | |||