summaryrefslogtreecommitdiffstats
path: root/Bachelor/Mikroprozessorsysteme2/ARM202U/EXAMPLES/CANDASM/INT64.H
blob: 0b017f4217d47f5fd4780d207953c75f0fa275f5 (plain)
1
2
3
4
5
6
7
8
9
#ifndef __int64_h
#define __int64_h

typedef struct int64_struct {
  unsigned int lo;
  unsigned int hi;
} int64;

#endif