mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-16 00:00:02 +01:00
14 lines
177 B
C
14 lines
177 B
C
#include <stdio.h>
|
|
|
|
#include "test.h"
|
|
|
|
int main() {
|
|
void *ptr = NewTest2(55);
|
|
|
|
TestBla(ptr);
|
|
TestBla(ptr);
|
|
TestBla(ptr);
|
|
int r = TestBla(ptr);
|
|
|
|
printf("final %d\n", r);
|
|
}
|