blob: cb3b6252a3d2914189d8a4850982ec416ed6146d (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _SAMBA_CHARSET_COMPAT_H_
#define _SAMBA_CHARSET_COMPAT_H_
#include <string.h>
#define strchr_m(h, n) strchr(h, n)
#define strstr_m(h, n) strstr(h, n)
#endif /* _SAMBA_CHARSET_COMPAT_H_ */
|