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