diff options
author | codestation | 2016-08-29 13:57:02 -0400 |
---|---|---|
committer | codestation | 2016-08-29 13:57:02 -0400 |
commit | 7cfa4cd5a42956e0c791675b835d041f8d378b83 (patch) | |
tree | 0d78b02a6630909b2b15f87ca05e239d67872722 /include/user/kernel/clib.h | |
parent | Fixed typo (diff) | |
download | vds-libraries-7cfa4cd5a42956e0c791675b835d041f8d378b83.tar.gz |
Added missing __cplusplus guards.
Diffstat (limited to 'include/user/kernel/clib.h')
-rw-r--r-- | include/user/kernel/clib.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/user/kernel/clib.h b/include/user/kernel/clib.h index 7f3ec34..bb8ba0d 100644 --- a/include/user/kernel/clib.h +++ b/include/user/kernel/clib.h @@ -4,9 +4,17 @@ #include <psp2/types.h> #include <stdarg.h> +#ifdef __cplusplus +extern "C" { +#endif + int sceClibStrcmp(const char *, const char *); int sceClibSnprintf(char *, SceSize, const char *, ...); int sceClibVsnprintf(char *, SceSize, const char *, va_list); +#ifdef __cplusplus +} #endif + +#endif /* _PSP2_KERNEL_CLIB_H_ */ |