summaryrefslogtreecommitdiff
path: root/debug.c
blob: df2071b50109cb27fbe6b96a35b5078893c9970f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <time.h>
#include <stdlib.h>
#include <stdio.h>

#include "tests.h"
#include "matrix.h"

int main()
{
    srand(time(NULL));
    run_tests();
}