TypeDefines.hh (8608:02d7ac5fb855) TypeDefines.hh (9171:ae88ecf37145)
1/*
2 * Copyright (c) 2009 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 21 unchanged lines hidden (view full) ---

30#ifndef TYPEDEFINES_H
31#define TYPEDEFINES_H
32
33
34typedef unsigned char uint8;
35typedef unsigned int uint32;
36typedef unsigned long long uint64;
37
1/*
2 * Copyright (c) 2009 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 21 unchanged lines hidden (view full) ---

30#ifndef TYPEDEFINES_H
31#define TYPEDEFINES_H
32
33
34typedef unsigned char uint8;
35typedef unsigned int uint32;
36typedef unsigned long long uint64;
37
38typedef signed char int8;
39typedef int int32;
40typedef long long int64;
41
42typedef long long integer_t;
43
44typedef int64 Time;
45typedef uint64 physical_address_t;
46
47typedef int64 Index; // what the address bit ripper returns
48typedef int LinkID;
49typedef int NodeID;
50typedef int SwitchID;
51
52#endif
38typedef long long int64;
39
40typedef long long integer_t;
41
42typedef int64 Time;
43typedef uint64 physical_address_t;
44
45typedef int64 Index; // what the address bit ripper returns
46typedef int LinkID;
47typedef int NodeID;
48typedef int SwitchID;
49
50#endif