Make sure EM_X86_64 is defined as elf.h doesn't define it on some

older systems.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5371
This commit is contained in:
Tom Hughes 2005-12-19 12:27:42 +00:00
parent d3781fc974
commit a1091ebfd5

View File

@ -54,6 +54,10 @@
#define PATH_MAX 4096 /* POSIX refers to this a lot but I dunno
where it is defined */
#ifndef EM_X86_64
#define EM_X86_64 62
#endif /* EM_X86_64 */
/* Report fatal errors */
static void barf ( const char *format, ... )
{