| Index: src/vm/ffi_linux.cc
|
| diff --git a/src/vm/fletch_api_impl.h b/src/vm/ffi_linux.cc
|
| similarity index 65%
|
| copy from src/vm/fletch_api_impl.h
|
| copy to src/vm/ffi_linux.cc
|
| index 4ac830bbe2b1f7e9fa22ee7c44936da53c825395..b2d891f7ca80d6f5a2052b85147f4ede157955fc 100644
|
| --- a/src/vm/fletch_api_impl.h
|
| +++ b/src/vm/ffi_linux.cc
|
| @@ -2,14 +2,11 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE.md file.
|
|
|
| -#ifndef SRC_VM_FLETCH_API_IMPL_H_
|
| -#define SRC_VM_FLETCH_API_IMPL_H_
|
| -
|
| -#include "include/fletch_api.h"
|
| +#include "src/vm/ffi.h"
|
|
|
| namespace fletch {
|
|
|
| -} // namespace fletch
|
| -
|
| -#endif // SRC_VM_FLETCH_API_IMPL_H_
|
| +const char* ForeignUtils::kLibBundlePrefix = "/lib/lib";
|
| +const char* ForeignUtils::kLibBundlePostfix = ".so";
|
|
|
| +} // namespace fletch
|
|
|