diff options
author | pommicket <pommicket@gmail.com> | 2022-11-06 22:11:41 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-11-06 22:11:41 -0500 |
commit | 000f57e11cf3272951cd3463f5d8bb82bc8e3903 (patch) | |
tree | 2b2b0267b729de838340c8996cbcf746df6806fb /tests/dylib.h | |
parent | dab85a8d1e9b99cbef225b8f5cc7fc001405828d (diff) |
read symbol type
Diffstat (limited to 'tests/dylib.h')
-rw-r--r-- | tests/dylib.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/dylib.h b/tests/dylib.h new file mode 100644 index 0000000..3b5d369 --- /dev/null +++ b/tests/dylib.h @@ -0,0 +1,8 @@ +// here is a realyl great dynami library i made it myself +#ifndef DYLIB_H_IS_REALLY_INCLUDED____ +#define DYLIB_H_IS_REALLY_INCLUDED____ +// ---------------dylib HEADER FILE --------- +// /PLEASE INCLUDE IF YOU WANT TO USE dylib +extern int the_number; // the number what it is +void bigger(void); // make the number bigger by 1 +#endif // DYLIB_H_IS_REALLY_INCLUDED____ |