Commit 8d25f608 by Anthony Green Committed by Anthony Green

* include/ffi.h.in (FFI_FN): Remove `...'.

From-SVN: r28610
parent f3e4d63c
1999-08-09 Anthony Green <green@cygnus.com> 1999-08-08 Anthony Green <green@cygnus.com>
* include/ffi.h.in (FFI_FN): Remove `...'.
1999-08-08 Anthony Green <green@cygnus.com>
* Makefile.in: Rebuilt. * Makefile.in: Rebuilt.
* Makefile.am (AM_CFLAGS): Compile with -fexceptions. * Makefile.am (AM_CFLAGS): Compile with -fexceptions.
......
/* -----------------------------------------------------------------*-C-*- /* -----------------------------------------------------------------*-C-*-
libffi @VERSION@ - Copyright (c) 1996-1999 Cygnus Solutions libffi @VERSION@ - Copyright (c) 1996-1999 Cygnus Solutions
$Id: ffi.h.in,v 1.3 1999/08/08 13:05:12 green Exp $ $Id: ffi.h.in,v 1.1 1999/08/08 22:58:30 green Exp $
Permission is hereby granted, free of charge, to any person obtaining Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the a copy of this software and associated documentation files (the
...@@ -383,7 +383,7 @@ void ffi_call(/*@dependent@*/ ffi_cif *cif, ...@@ -383,7 +383,7 @@ void ffi_call(/*@dependent@*/ ffi_cif *cif,
/*@dependent@*/ void **avalue); /*@dependent@*/ void **avalue);
/* Useful for eliminating compiler warnings */ /* Useful for eliminating compiler warnings */
#define FFI_FN(f) ((void (*)(...))f) #define FFI_FN(f) ((void (*)())f)
/* ---- Definitions shared with assembly code ---------------------------- */ /* ---- Definitions shared with assembly code ---------------------------- */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment