/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
34 by Gustav Hartvigsson
* Finnished test suite
1
#include <stdlib.h>
2
#include <stdio.h>
3
#include <malloc.h>
4
#include <string.h>
5
#include <stdint.h>
6
7
#include "test_macros.h"
8
#include "refcount.h"
9
10
int main  (int argc, char ** argv, char ** argp) {
11
  setup_suite();
12
  
13
  test_unit (test_refcount() , "Refcount");
14
  
15
  end_suite();
16
}