summaryrefslogtreecommitdiff
path: root/contrib/libdiff/compat/include/sys/types.h
blob: f580c7c593a8653c4d477ae3887d422e2d7d32ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
 * Public domain
 * sys/types.h compatibility shim
 */

#include_next <sys/types.h>

#ifndef DIFFCOMPAT_SYS_TYPES_H
#define DIFFCOMPAT_SYS_TYPES_H

#if !defined(__dead)
#define __dead      __attribute__((__noreturn__))
#endif

#endif