compat/string.h: Added header-guards
This commit is contained in:
parent
ff1d4862a1
commit
51dd9eac43
1 changed files with 5 additions and 0 deletions
|
|
@ -1,6 +1,11 @@
|
||||||
|
|
||||||
|
#ifndef __COMPAT_STRING_H
|
||||||
|
#define __COMPAT_STRING_H
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#ifdef NO_MEMRCHR
|
#ifdef NO_MEMRCHR
|
||||||
extern void* memrchr(const void *, int, size_t);
|
extern void* memrchr(const void *, int, size_t);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#endif /* __COMPAT_STRING_H */
|
||||||
|
|
|
||||||
Reference in a new issue