summaryrefslogtreecommitdiff
path: root/com32/include/bitsize/stddef.h
blob: 04418a0420d3bbc9df807d1dd0fca68d6cb987f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * Include stddef.h as appropriate for architecture
 */

#ifndef _BITSIZE_STDDEF_H
#define _BITSIZE_STDDEF_H

#if __SIZEOF_POINTER__ == 4
#include <bitsize32/stddef.h>
#elif __SIZEOF_POINTER__ == 8
#include <bitsize64/stddef.h>
#else
#error "Unable to build for to-be-defined architecture type"
#endif

#endif /* _BITSIZE_STDDEF_H */