diff --git a/src/wrap/wrap.c b/src/wrap/wrap.c index e69de29..0998f3d 100644 --- a/src/wrap/wrap.c +++ b/src/wrap/wrap.c @@ -0,0 +1,8 @@ +#include "wrap.h" + +#include + +void some_function(void) +{ + printf("some_function()\n"); +} diff --git a/src/wrap/wrap.h b/src/wrap/wrap.h index e69de29..98afa0b 100644 --- a/src/wrap/wrap.h +++ b/src/wrap/wrap.h @@ -0,0 +1,6 @@ +#ifndef WRAP_H +#define WRAP_H + +void some_function(void); + +#endif //WRAP_H