Make this work on non-i386 as well. (Needed for cross-releases.)

This commit is contained in:
Ruslan Ermilov 2003-02-04 16:01:00 +00:00
parent 8ec919e672
commit 05b451c6ed
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=110330
2 changed files with 3 additions and 2 deletions

View File

@ -27,7 +27,9 @@
*/
#include <sys/types.h>
#include <machine/elf.h>
#define __ELF_WORD_SIZE 32
#include <sys/elf32.h>
#include <sys/elf_generic.h>
#include "kgz.h"
/* Section header indices */

View File

@ -29,7 +29,6 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/wait.h>
#include <machine/elf.h>
#include <err.h>
#include <fcntl.h>