[fix] Fixes to matrix methods

This commit is contained in:
Al
2015-12-08 17:33:38 -05:00
parent d9d53ce17e
commit fe37286bcf
2 changed files with 20 additions and 18 deletions

View File

@@ -1,8 +1,10 @@
#ifndef MATRIX_H
#define MATRIX_H
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include "collections.h"
@@ -48,4 +50,4 @@ bool matrix_write(matrix_t *self, FILE *f);
void matrix_destroy(matrix_t *self);
#endif
#endif