Remove unnecessary typedef usage

This commit is contained in:
Ginger Bill
2017-06-08 13:08:39 +01:00
parent 2a89d8021c
commit 2b96be0ae8
18 changed files with 349 additions and 365 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
typedef struct irFileBuffer {
struct irFileBuffer {
gbVirtualMemory vm;
isize offset;
gbFile * output;
} irFileBuffer;
};
void ir_file_buffer_init(irFileBuffer *f, gbFile *output) {
isize size = 8*gb_virtual_memory_page_size(NULL);