#ifndef LLVM_LIBC_SRC_WCHAR_WCSTOL_H
#define LLVM_LIBC_SRC_WCHAR_WCSTOL_H
#include "hdr/types/wint_t.h"
#include "src/__support/macros/config.h"
namespace LIBC_NAMESPACE_DECL {
long wcstol(const wchar_t *__restrict str, wchar_t **__restrict str_end,
int base);
}
#endif