Adds extern "C" to header file.
This commit is contained in:
parent
72c33b4b05
commit
585cb33680
1 changed files with 10 additions and 1 deletions
|
@ -2,6 +2,15 @@
|
|||
|
||||
#include <stddef.h>
|
||||
|
||||
#if defined(__cplusplus)
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
void * memcpy ( void * destination, const void * source, size_t num );
|
||||
|
||||
void * memset ( void * ptr, int value, size_t num );
|
||||
|
||||
|
||||
#if defined(__cplusplus)
|
||||
}
|
||||
#endif
|
Loading…
Reference in a new issue