annotate dmd/backend/targ_types.d @ 146:af7e5ebef6ad

redundant extern(C)
author Eldar Insafutdinov <e.insafutdinov@gmail.com>
date Tue, 14 Sep 2010 23:34:50 +0100
parents 10317f0c89a5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
1 module dmd.backend.targ_types;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
2
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
3 /***************************
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
4 * Target machine data types as they appear on the host.
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
5 */
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
6
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
7 alias char targ_char;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
8 alias ubyte targ_uchar;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
9 alias byte targ_schar;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
10 alias short targ_short;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
11 alias ushort targ_ushort;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
12 alias long targ_long;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
13 alias ulong targ_ulong;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
14 alias long targ_llong;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
15 alias ulong targ_ullong;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
16 alias float targ_float;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
17 alias double targ_double;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
18 alias real targ_ldouble;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
19 alias int targ_int;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
20 alias uint targ_uns;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
21 alias size_t targ_size_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
22 alias ptrdiff_t targ_ptrdiff_t;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
23
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
24 alias cfloat Complex_f;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
25 alias cdouble Complex_d;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
26 alias creal Complex_ld;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
27
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
28 extern(C) extern __gshared targ_size_t localsize;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
29 extern(C) extern __gshared targ_size_t Toff;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
30 extern(C) extern __gshared targ_size_t Poff;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
31 extern(C) extern __gshared targ_size_t Aoff;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
32 extern(C) extern __gshared targ_size_t Poffset;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
33 extern(C) extern __gshared targ_size_t funcoffset;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
34 extern(C) extern __gshared targ_size_t framehandleroffset;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
35 extern(C) extern __gshared targ_size_t Aoffset;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
36 extern(C) extern __gshared targ_size_t Toffset;
10317f0c89a5 Initial commit
korDen
parents:
diff changeset
37 extern(C) extern __gshared targ_size_t EEoffset;