blob: c28a7f85657c89c1ccb7a466708731d2a127d6b8 [file] [log] [blame]
Ying Wang5bdf3052012-09-20 10:06:33 -07001/*
2 * Copyright (C) 2005 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17/*
18 * Android config -- "Darwin". Used for X86 Mac OS X.
19 */
20#ifndef _ANDROID_CONFIG_H
21#define _ANDROID_CONFIG_H
22
23/*
24 * ===========================================================================
25 * !!! IMPORTANT !!!
26 * ===========================================================================
27 *
28 * This file is included by ALL C/C++ source files. Don't put anything in
29 * here unless you are absolutely certain it can't go anywhere else.
30 *
31 * Any C++ stuff must be wrapped with "#ifdef __cplusplus". Do not use "//"
32 * comments.
33 */
34
35/*
Ying Wang5bdf3052012-09-20 10:06:33 -070036 * Define if we have <malloc.h> header
37 */
Nick Kralevich9b44afb2015-04-08 12:21:54 -070038/* #define HAVE_MALLOC_H 1 */
Ying Wang5bdf3052012-09-20 10:06:33 -070039
40/*
Ying Wang5bdf3052012-09-20 10:06:33 -070041 * The default path separator for the platform
42 */
43#define OS_PATH_SEPARATOR '/'
44
45/*
Ying Wang5bdf3052012-09-20 10:06:33 -070046 * Define if <stdint.h> exists.
47 */
48#define HAVE_STDINT_H 1
49
Ying Wang5bdf3052012-09-20 10:06:33 -070050#endif /*_ANDROID_CONFIG_H*/