mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-23 00:00:01 +01:00
15 lines
177 B
C
15 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);
|
||
|
}
|