aarch64: add hwcap header file
[uclibc-ng.git] / libc / sysdeps / linux / common / bits / kernel_types.h
blob1c23ebfe77eac1f4ce4da9a03756a7b6ec911128
1 #ifndef _BITS_KERNEL_TYPES_H
2 #define _BITS_KERNEL_TYPES_H
4 /* Sigh. We need to carefully wrap this one... No guarantees
5 * that the asm/posix_types.h kernel header is working. Many
6 * arches have broken headers that introduce tons of gratuitous
7 * conflicts with uClibc's namespace. See bits/kernel_types.h
8 * for i386, arm, etc for examples... */
9 #warning You really should include a proper bits/kernel_types.h for your architecture
11 #ifndef __GLIBC__
12 #define __GLIBC__ 2
13 #include <asm/posix_types.h>
14 #undef __GLIBC__
15 #else
16 #include <asm/posix_types.h>
17 #endif
20 #endif /* _BITS_KERNEL_TYPES_H */