source: sources/src/sc_nbdefs.h

Last change on this file was 59, checked in by meunier, 7 years ago
  • Fixed memory leaks
  • Fixed indentation in some 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//#include <stdint.h>
17
18typedef signed long long int64;
19typedef unsigned long long uint64;
20
21typedef long  int32;
22typedef short int16;
23typedef char  int8;
24typedef unsigned long  uint32;
25typedef unsigned short uint16;
26typedef unsigned char  uint8;
27
28
29//typedef uint16_t smallest_uint;
30//typedef int16_t  smallest_int;
31
32typedef uint16 smallest_uint;
33typedef int16  smallest_int;
34
35#endif
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.