1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-18 18:40:22 +02:00

fix x86-64 builds

git-archimport-id: bonzini@gnu.org--2004b/lightning--stable--1.2--patch-39
This commit is contained in:
Paolo Bonzini 2006-11-20 13:00:29 +00:00
parent f748b3c5e7
commit 197d20aa96
12 changed files with 80 additions and 24 deletions

View file

@ -38,6 +38,7 @@
#include <stdlib.h>
#include "lightning.h"
#ifdef JIT_FPR
static jit_insn codeBuffer[1024];
typedef double (*pdfd) (double); /* Pointer to Double Function of Double */
@ -136,3 +137,10 @@ main ()
#endif
return 0;
}
#else
int
main()
{
return (77);
}
#endif