added some basic code to the files
This commit is contained in:
parent
aa38c9dc83
commit
ddeb4bcc23
|
@ -0,0 +1,8 @@
|
|||
#include "wrap.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
void some_function(void)
|
||||
{
|
||||
printf("some_function()\n");
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
#ifndef WRAP_H
|
||||
#define WRAP_H
|
||||
|
||||
void some_function(void);
|
||||
|
||||
#endif //WRAP_H
|
Loading…
Reference in New Issue