Sha256: ea86eb4078cfa709d2edbb10c5fdb7f520fd870fa6390abccfb75ef578d10be9
Contents?: true
Size: 379 Bytes
Versions: 5
Compression:
Stored size: 379 Bytes
Contents
#ifndef _STDALIGN_H #define _STDALIGN_H /* this whole header only works in C11 or with compiler extensions */ #if __STDC_VERSION__ < 201112L && defined( __GNUC__) #define _Alignas(t) __attribute__((__aligned__(t))) #define _Alignof(t) __alignof__(t) #endif #define alignas _Alignas #define alignof _Alignof #define __alignas_is_defined 1 #define __alignof_is_defined 1 #endif
Version data entries
5 entries across 5 versions & 1 rubygems