1
0
Fork 0
mirror of https://github.com/tailix/kernel.git synced 2025-02-24 15:55:41 -05:00

Add guard for C++

This commit is contained in:
Braiden Vasco 2017-11-04 09:10:12 +00:00
parent 857e48770c
commit 48ff83b5a3

View file

@ -1,8 +1,16 @@
#ifndef KERNELMQ_INCLUDED_STDLIB
#define KERNELMQ_INCLUDED_STDLIB 1
#ifdef __cplusplus
extern "C" {
#endif
void kmemset(void *buffer, unsigned char value, unsigned int size);
unsigned int kstrlen(const char *s);
void kitoa(char *buf, int base, int d);
#ifdef __cplusplus
}
#endif
#endif