Continued implementation of PBQP solver: Fixed errors and warnings.
[libfirm] / matrix_t.h
1 #ifndef KAPS_MATRIX_T_H
2 #define KAPS_MATRIX_T_H
3
4 typedef struct matrix matrix;
5
6 struct matrix {
7         int rows;
8         int cols;
9         int entries[];
10 };
11
12 #endif /* KAPS_MATRIX_T_H */