xref: /freebsd/usr.bin/gcore/elf32core.c (revision a0b956f5ac5e0941f9e74e24c1c53e05ad061a38)
1 /* $FreeBSD$ */
2 #ifndef __LP64__
3 #error "this file must be compiled for LP64."
4 #endif
5 
6 #define __ELF_WORD_SIZE 32
7 #define _MACHINE_ELF_WANT_32BIT
8 #define	_WANT_LWPINFO32
9 
10 #include <sys/procfs.h>
11 
12 #define	ELFCORE_COMPAT_32	1
13 #include "elfcore.c"
14 
15