2 * Find the offset of uc_mcontext in a ucontext structure, to enable
3 * building on both (glibc-2.3.1 and earlier) and (glibc-2.3.2 and
4 * later), after the glibc developers broke source code compatibility.
5 * (see also Debian bugs #207806 and #209074)
9 * This software is part of the SBCL system. See the README file for
12 * While most of SBCL is derived from the CMU CL system, many
13 * utilities for the build process (like this one) were written from
14 * scratch after the fork from CMU CL.
16 * This software is in the public domain and is provided with
17 * absolutely no warranty. See the COPYING and CREDITS files for
24 #include <sys/ucontext.h>
26 int main (int argc
, char *argv
[]) {
29 fprintf(stderr
,"%s: command line arguments provided. Don't do that.\n", argv
[0]);
34 /* This is an automatically-generated file; please do not edit it.\n\
35 See the program tools-for-build/where-is-mcontext.c.\n\
39 #ifndef PPC_LINUX_MCONTEXT_H\n\
40 #define PPC_LINUX_MCONTEXT_H\n\n");
42 if (offsetof(ucontext_t
,uc_mcontext
) > 40) {
43 printf("#define GLIBC232_STYLE_UCONTEXT\n\n");
45 printf("#define GLIBC231_STYLE_UCONTEXT\n\n");
48 #endif /* PPC_LINUX_MCONTEXT_H */\n");