[ARM] Rename *_compute_save_reg_mask ()
[official-gcc.git] / libsanitizer / include / system / linux / types.h
blob01c98b9a3ad69feb8586d94ee9a747c4f499c381
1 #ifndef LINUX_TYPES_WRAPPER_H
2 #define LINUX_TYPES_WRAPPER_H
4 /* Before
5 https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/include/linux/types.h?id=6c7c6afbb8c0e60d32a563cae7c6889211e9d9d8
6 linux/types.h conflicted with sys/ustat.h. Work around it. */
8 #define ustat __asan_bad_ustat
9 #include_next <linux/types.h>
10 #undef ustat
12 #endif