evmc/test/integration/compilation/compilation_test.c
2019-05-09 09:11:27 +02:00

17 lines
422 B
C

/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2018-2019 The EVMC Authors.
* Licensed under the Apache License, Version 2.0.
*/
/* Test compilation of C public headers. */
#include <evmc/evmc.h>
#include <evmc/instructions.h>
#include <evmc/loader.h>
#include <evmc/utils.h>
#if _MSC_VER || __STDC_VERSION__ >= 199901
/* Skip C90 standard because contains inline keyword. */
#include <evmc/helpers.h>
#endif