diff options
| author | Sean Miller <seanmiller999@gmail.com> | 2026-04-07 16:49:03 +0100 |
|---|---|---|
| committer | Sean Miller <seanmiller999@gmail.com> | 2026-04-07 16:49:03 +0100 |
| commit | 21c847dfd63f557d7d617182148a52198f2466ef (patch) | |
| tree | 3f0f26e1955e1a04ef344865f91cee698937dee5 /include | |
| parent | 917f8508248fa793ae3ac8ffd5338e5d6275a190 (diff) | |
Fix link error with d_lib.cpp & mark as matching
Diffstat (limited to 'include')
| -rw-r--r-- | include/toBeSorted/d_lib.h | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/include/toBeSorted/d_lib.h b/include/toBeSorted/d_lib.h index b9f7c26d..d60dee78 100644 --- a/include/toBeSorted/d_lib.h +++ b/include/toBeSorted/d_lib.h @@ -1,11 +1,20 @@ #ifndef D_LIB_H #define D_LIB_H -namespace dLib { +#include "common.h" + +#ifdef __cplusplus +extern "C" { +#endif + +extern u32 lbl_80574FA0; +extern u32 lbl_80574FA4; void unknownStub(); -bool strequals(const char *str1, const char *str2); +bool strequals(const char *lhs, const char *rhs); -}; // namespace dLib +#ifdef __cplusplus +} +#endif #endif // D_LIB_H |
