1#ifndef AWS_COMMON_CONFIG_H
2#define AWS_COMMON_CONFIG_H
3
4/*
5 * Copyright 2010-2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License").
8 * You may not use this file except in compliance with the License.
9 * A copy of the License is located at
10 *
11 * http://aws.amazon.com/apache2.0
12 *
13 * or in the "license" file accompanying this file. This file is distributed
14 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
15 * express or implied. See the License for the specific language governing
16 * permissions and limitations under the License.
17 */
18
19/*
20 * This header exposes compiler feature test results determined during cmake
21 * configure time to inline function implementations. The macros defined here
22 * should be considered to be an implementation detail, and can change at any
23 * time.
24 */
25/* #undef AWS_HAVE_GCC_OVERFLOW_MATH_EXTENSIONS */
26/* #undef AWS_HAVE_GCC_INLINE_ASM */
27/* #undef AWS_HAVE_MSVC_MULX */
28/* #undef AWS_HAVE_EXECINFO */
29
30#endif
31