aligned_alloc.c 220 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 // RUN: %clang -std=c11 -O0 %s -o %t && %run %t #include <stdlib.h> extern void *aligned_alloc (size_t alignment, size_t size); int main() { volatile void *p = aligned_alloc(128, 1024); free((void*)p); return 0; }