source: sources/src/sc_nbdefs.h @ 54

Last change on this file since 54 was 52, checked in by meunier, 11 years ago

Code formatting in all source files.

File size: 1.3 KB
RevLine 
[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
16#ifndef WIN32
[52]17typedef signed long long int64;
[1]18typedef unsigned long long uint64;
19#else
[52]20typedef signed __int64 int64;
21typedef unsigned __int64 uint64;
[1]22#endif
23
[52]24typedef long  int32;
25typedef short int16;
26typedef char  int8;
[1]27typedef unsigned long  uint32;
28typedef unsigned short uint16;
29typedef unsigned char  uint8;
30
[52]31typedef uint16 smallest_uint;
32typedef int16  smallest_int;
[1]33
34#endif
[52]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.