blob: 21752623d58bd449ab20cdc8564c83c8ae2243dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* ISC license. */
#include <skalibs/sysdeps.h>
#include <skalibs/alloc.h>
#include "alloc-internal.h"
#ifndef SKALIBS_HASMALLOC0
#define ALIGNMENT 16
static union { unsigned char blah[ALIGNMENT] ; long double ld ; } const zeroblock ;
aligned_char_ref alloc_0 = (aligned_char_ref)(&zeroblock) ;
#endif
|