Last change
on this file since 52 was
52,
checked in by meunier, 12 years ago
|
Code formatting in all source files.
|
File size:
1.3 KB
|
Line | |
---|
1 | /*------------------------------------------------------------\ |
---|
2 | | | |
---|
3 | | Tool : systemcass | |
---|
4 | | | |
---|
5 | | File : sc_main.cc | |
---|
6 | | | |
---|
7 | | Author : Buchmann Richard | |
---|
8 | | | |
---|
9 | | Date : 09_07_2004 | |
---|
10 | | | |
---|
11 | \------------------------------------------------------------*/ |
---|
12 | |
---|
13 | #ifndef __SC_DEFS_H__ |
---|
14 | #define __SC_DEFS_H__ |
---|
15 | |
---|
16 | #ifndef WIN32 |
---|
17 | typedef signed long long int64; |
---|
18 | typedef unsigned long long uint64; |
---|
19 | #else |
---|
20 | typedef signed __int64 int64; |
---|
21 | typedef unsigned __int64 uint64; |
---|
22 | #endif |
---|
23 | |
---|
24 | typedef long int32; |
---|
25 | typedef short int16; |
---|
26 | typedef char int8; |
---|
27 | typedef unsigned long uint32; |
---|
28 | typedef unsigned short uint16; |
---|
29 | typedef unsigned char uint8; |
---|
30 | |
---|
31 | typedef uint16 smallest_uint; |
---|
32 | typedef int16 smallest_int; |
---|
33 | |
---|
34 | #endif |
---|
35 | |
---|
36 | /* |
---|
37 | # Local Variables: |
---|
38 | # tab-width: 4; |
---|
39 | # c-basic-offset: 4; |
---|
40 | # c-file-offsets:((innamespace . 0)(inline-open . 0)); |
---|
41 | # indent-tabs-mode: nil; |
---|
42 | # End: |
---|
43 | # |
---|
44 | # vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4 |
---|
45 | */ |
---|
46 | |
---|
Note: See
TracBrowser
for help on using the repository browser.