Blame


1 b858fc9f 2020-05-05 neels /*
2 b858fc9f 2020-05-05 neels * Public domain
3 b858fc9f 2020-05-05 neels * sys/types.h compatibility shim
4 b858fc9f 2020-05-05 neels */
5 b858fc9f 2020-05-05 neels
6 b858fc9f 2020-05-05 neels #include_next <sys/types.h>
7 b858fc9f 2020-05-05 neels
8 b858fc9f 2020-05-05 neels #ifndef DIFFCOMPAT_SYS_TYPES_H
9 b858fc9f 2020-05-05 neels #define DIFFCOMPAT_SYS_TYPES_H
10 b858fc9f 2020-05-05 neels
11 b858fc9f 2020-05-05 neels #if !defined(__dead)
12 b858fc9f 2020-05-05 neels #define __dead __attribute__((__noreturn__))
13 b858fc9f 2020-05-05 neels #endif
14 b858fc9f 2020-05-05 neels
15 b858fc9f 2020-05-05 neels #endif