diff options
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +#include <time.h> +#include <stdlib.h> +#include <stdio.h> + +#include "tests.h" +#include "matrix.h" + +int main() +{ + srand(time(NULL)); + run_tests(); +} |