#ifndef _MSL_CSTRING_H
#define _MSL_CSTRING_H

#include <string.h>

namespace std
{
    inline static char* strstr(char* haystack, const char* needle)
    {
        return ::strstr(haystack, needle);
    }
} // namespace std

#endif
