typedef struct and start removing auto

This commit is contained in:
Ginger Bill
2016-11-23 11:07:35 +00:00
parent 8ecfca0c9b
commit aa2bcb166f
12 changed files with 286 additions and 308 deletions

View File

@@ -1,14 +1,14 @@
struct TimeStamp {
typedef struct TimeStamp {
u64 start;
u64 finish;
String label;
};
} TimeStamp;
struct Timings {
typedef struct Timings {
TimeStamp total;
Array(TimeStamp) sections;
u64 freq;
};
} Timings;
u64 win32_time_stamp_time_now(void) {