Archived
1
0
Fork 0

compat/string.h: Added header-guards

This commit is contained in:
Henrik Hautakoski 2011-01-13 14:54:19 +01:00
parent ff1d4862a1
commit 51dd9eac43

View file

@ -1,6 +1,11 @@
#ifndef __COMPAT_STRING_H
#define __COMPAT_STRING_H
#include <string.h>
#ifdef NO_MEMRCHR
extern void* memrchr(const void *, int, size_t);
#endif
#endif /* __COMPAT_STRING_H */