3 * Pointer alignment hack
5 * (c) 2003 Straylight/Edgeware
8 /*----- Licensing notice --------------------------------------------------*
10 * This file is part of the mLib utilities library.
12 * mLib is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Library General Public License as
14 * published by the Free Software Foundation; either version 2 of the
15 * License, or (at your option) any later version.
17 * mLib is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Library General Public License for more details.
22 * You should have received a copy of the GNU Library General Public
23 * License along with mLib; if not, write to the Free
24 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
35 /*----- Header files ------------------------------------------------------*/
39 /*----- Data structures ---------------------------------------------------*/
49 #if __STDC_VERSION__ >= 201112
54 /*----- Macros provided ---------------------------------------------------*/
56 #if __STDC_VERSION__ >= 201112
57 # define ALIGNOF(ty) _Alignof(ty)
59 # define ALIGNOF(ty) (offsetof(struct { unsigned char _x; ty _y; }, _y))
62 #define ALIGN(sz) do { \
63 (sz) += ALIGNOF(union align) - 1; \
64 (sz) -= (sz)%ALIGNOF(union align); \
67 /*----- That's all, folks -------------------------------------------------*/