mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 04:24:15 +00:00
2d168fcd61
Reviewed By: lucasr Differential Revision: D3648895 fbshipit-source-id: faf42cda82764adaf41cf3f3f9109d48aea203fe
19 lines
481 B
C
19 lines
481 B
C
/**
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#ifdef __cplusplus
|
|
# define CSS_EXTERN_C_BEGIN extern "C" {
|
|
# define CSS_EXTERN_C_END }
|
|
#else
|
|
# define CSS_EXTERN_C_BEGIN
|
|
# define CSS_EXTERN_C_END
|
|
#endif
|