summaryrefslogtreecommitdiff
path: root/src/libstddjb/alloc_0.c
blob: bdd42a4b170037f74c69fe828013e7143ac9a6d4 (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 *alloc_0 = (aligned_char_ref)(&zeroblock) ;

#endif