Bug 886842 - Add clang trunk builds for ASan. r=froydnj
[gecko.git] / js / public / LegacyIntTypes.h
blob903f2e6e4be5a000e0912a61cb420ca1950fdf42
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 * vim: set ts=8 sts=4 et sw=4 tw=99:
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /*
8 * This section typedefs the old 'native' types to the new <stdint.h> types.
9 * These redefinitions are provided solely to allow JSAPI users to more easily
10 * transition to <stdint.h> types. They are not to be used in the JSAPI, and
11 * new JSAPI user code should not use them. This mapping file may eventually
12 * be removed from SpiderMonkey, so don't depend on it in the long run.
16 * BEWARE: Comity with other implementers of these types is not guaranteed.
17 * Indeed, if you use this header and third-party code defining these
18 * types, *expect* to encounter either compile errors or link errors,
19 * depending how these types are used and on the order of inclusion.
20 * It is safest to use only the JSAPI <stdint.h>-style types,
21 * customizing those types using MOZ_CUSTOM_STDINT_H if necessary.
23 #ifndef js_LegacyIntTypes_h
24 #define js_LegacyIntTypes_h
26 #include "mozilla/StandardInteger.h"
28 #include "js-config.h"
30 typedef uint8_t uint8;
31 typedef uint16_t uint16;
32 typedef uint32_t uint32;
33 typedef uint64_t uint64;
36 * On AIX 4.3, sys/inttypes.h (which is included by sys/types.h, a very
37 * common header file) defines the types int8, int16, int32, and int64.
38 * So we don't define these four types here to avoid conflicts in case
39 * the code also includes sys/types.h.
41 #if defined(AIX) && defined(HAVE_SYS_INTTYPES_H)
42 #include <sys/inttypes.h>
43 #else
44 typedef int8_t int8;
45 typedef int16_t int16;
46 typedef int32_t int32;
47 typedef int64_t int64;
48 #endif /* AIX && HAVE_SYS_INTTYPES_H */
50 typedef uint8_t JSUint8;
51 typedef uint16_t JSUint16;
52 typedef uint32_t JSUint32;
53 typedef uint64_t JSUint64;
55 typedef int8_t JSInt8;
56 typedef int16_t JSInt16;
57 typedef int32_t JSInt32;
58 typedef int64_t JSInt64;
60 #endif /* js_LegacyIntTypes_h */