You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
malloc.c: In function 'alpha_memalign':
malloc.c:36:15: error: implicit declaration of function 'memalign' [-Wimplicit-function-declaration]
36 | void *ret = memalign(alignment, bytes);
| ^~~~~~~~
malloc.c:36:15: error: initialization of 'void *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
macOS does not have memalign and apparently does not need it either. posix_memalign or malloc could be used, if needed.
The text was updated successfully, but these errors were encountered:
Building from a584f48 with gcc 14.2.0:
macOS does not have
memalign
and apparently does not need it either.posix_memalign
ormalloc
could be used, if needed.The text was updated successfully, but these errors were encountered: