The problem isn't from your code. It's from ODE, and this is a known problem. And it often happends

EDIT:
After taking a bigger look at your code i found this line:
Code:
VECTOR* maken_munt;


Vectors are not pointers. Then it should be:
Code:
VECTOR maken_munt;


And remember always, lite-C is Case-Sensitive.