38ee3b84a3b8e16e494cb9e7174636326c1c78a9
[libfirm] / matrix_t.h
1 #ifndef KAPS_MATRIX_T_H
2 #define KAPS_MATRIX_T_H
3
4 struct matrix;
5 typedef struct matrix matrix;
6
7 struct matrix {
8         int rows;
9         int cols;
10         num entries[];
11 };
12
13 #endif /* KAPS_MATRIX_T_H */