genode/repos/libports/src/lib/ffi/fficonfig.h
Sebastian Sumpf ea6b4a0caf libports: port of ffi library
required by jdk

issue #2791

Forein function interface library, which takes care of calling
conventions of different platforms.
2018-05-30 13:36:07 +02:00

10 lines
178 B
C

#ifndef _FFICONFIG_H_
#define _FFICONFIG_H_
#define FFI_HIDDEN __attribute__ ((visibility ("hidden")))
#define STDC_HEADERS 1
#define HAVE_MEMCPY 1
#endif /* _FFICONFIG_H_ */