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