mirror of
https://github.com/status-im/evmc.git
synced 2025-02-23 16:38:06 +00:00
12 lines
244 B
C
12 lines
244 B
C
|
/* EVMC: Ethereum Client-VM Connector API.
|
||
|
* Copyright 2018 The EVMC Authors.
|
||
|
* Licensed under the Apache License, Version 2.0. See the LICENSE file.
|
||
|
*/
|
||
|
|
||
|
#include <evmc/utils.h>
|
||
|
|
||
|
EVMC_EXPORT void* evmc_create()
|
||
|
{
|
||
|
return (void*)0xdeaf;
|
||
|
}
|