equal
deleted
inserted
replaced
1 /* |
1 /* |
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). |
3 * All rights reserved. |
3 * All rights reserved. |
4 * This component and the accompanying materials are made available |
4 * This component and the accompanying materials are made available |
5 * under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
5 * under the terms of "Eclipse Public License v1.0" |
6 * which accompanies this distribution, and is available |
6 * which accompanies this distribution, and is available |
7 * at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html". |
8 * |
8 * |
9 * Initial Contributors: |
9 * Initial Contributors: |
10 * Nokia Corporation - initial contribution. |
10 * Nokia Corporation - initial contribution. |
11 * |
11 * |
12 * Contributors: |
12 * Contributors: |
13 * |
13 * |
14 * Description: |
14 * Description: |
15 * |
15 * |
16 */ |
16 */ |
17 |
|
18 |
|
19 |
|
20 |
17 |
21 |
18 |
22 |
19 |
23 /** |
20 /** |
24 @file |
21 @file |
31 |
28 |
32 /** |
29 /** |
33 EPOC safety net - Check various EPOC defines to ensure that |
30 EPOC safety net - Check various EPOC defines to ensure that |
34 we get an appropriate endianness choice |
31 we get an appropriate endianness choice |
35 */ |
32 */ |
36 #if (defined(__WINS__) || defined(__MX86__)) && !defined(__i386__) |
33 #if (defined(__WINS__) || defined(__MX86__) || defined(__X86GCC__)) && !defined(__i386__) |
37 #define __i386__ |
34 #define __i386__ |
38 #elif defined(__MARM__) && !defined(__arm__) |
35 #elif defined(__MARM__) && !defined(__arm__) |
39 #define __arm__ |
36 #define __arm__ |
40 #endif |
37 #endif |
41 |
38 |
175 #endif /* not __IEEE_LITTLE_ENDIAN */ |
172 #endif /* not __IEEE_LITTLE_ENDIAN */ |
176 #endif /* not __IEEE_BIG_ENDIAN */ |
173 #endif /* not __IEEE_BIG_ENDIAN */ |
177 |
174 |
178 #endif /* not __IEEE_LITTLE_ENDIAN */ |
175 #endif /* not __IEEE_LITTLE_ENDIAN */ |
179 #endif /* not __IEEE_BIG_ENDIAN */ |
176 #endif /* not __IEEE_BIG_ENDIAN */ |
|
177 |