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:
parent
857e48770c
commit
48ff83b5a3
1 changed files with 8 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue