/usr/include/diet/asm/sigcontext.h is in dietlibc-dev 0.33~cvs20120325-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | #ifndef _ASM_SIGCONTEXT_H
#define _ASM_SIGCONTEXT_H
#include <sys/cdefs.h>
__BEGIN_DECLS
#if defined(__i386__)
#include <asm/i386-sigcontext.h>
#endif
#if defined(__x86_64__)
#include <asm/x86_64-sigcontext.h>
#endif
#ifdef __sparc__
#include <asm/sparc-sigcontext.h>
#endif
#ifdef __mips__
#include <asm/mips-sigcontext.h>
#endif
#if defined(__powerpc__) || defined(__powerpc64__)
#include <asm/ppc-sigcontext.h>
#endif
#ifdef __alpha__
#include <asm/alpha-sigcontext.h>
#endif
#ifdef __arm__
#include <asm/arm-sigcontext.h>
#endif
#ifdef __hppa__
#include <asm/parisc-sigcontext.h>
#endif
#ifdef __ia64__
#include <asm/ia64-sigcontext.h>
#endif
#ifdef __s390__
#include <asm/s390-sigcontext.h>
#endif
__END_DECLS
#endif
|