We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afc710e commit 2cdacb8Copy full SHA for 2cdacb8
vlib/v/gen/c/cheaders.v
@@ -336,6 +336,12 @@ typedef int (*qsort_callback_func)(const void*, const void*);
336
337
#include <stdarg.h> // for va_list
338
339
+#ifdef __TERMUX__
340
+#if __BIONIC_AVAILABILITY_GUARD(28)
341
+#else
342
+void * aligned_alloc(size_t alignment, size_t size) { return malloc(size); }
343
+#endif
344
345
//================================== GLOBALS =================================*/
346
int load_so(byteptr);
347
void _vinit(int ___argc, voidptr ___argv);
0 commit comments