diff options
author | PikalaxALT <pikalax1@gmail.com> | 2017-09-13 10:59:25 -0400 |
---|---|---|
committer | PikalaxALT <pikalax1@gmail.com> | 2017-09-13 10:59:25 -0400 |
commit | e26501f130ed84b160f80232db642ec49722025f (patch) | |
tree | 6e0b5aeea77ca71dfab94d70df4cd33dc10c365a /include/global.h | |
parent | 28b272bf52e32374a3d0e493b47953bfad8e9cac (diff) |
Support functions for GoRandomDirections
Diffstat (limited to 'include/global.h')
-rw-r--r-- | include/global.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/global.h b/include/global.h index c406c507f..a006e8591 100644 --- a/include/global.h +++ b/include/global.h @@ -10,7 +10,7 @@ #define asm_comment(x) asm volatile("@ -- " x " -- ") #define asm_unified(x) asm(".syntax unified\n" x "\n.syntax divided") -#ifdef __APPLE__ +#if defined (__APPLE__) || defined (__CYGWIN__) void memset(void *, int, size_t); void memcpy(void *, const void *, size_t); #endif // __APPLE__ |