// -*- C++ -*-
//===----------------------------------------------------------------------===//
//
// Copyright (C) Intel Corporation
//
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
// This file incorporates work covered by the following copyright and permission
// notice:
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
//
//===----------------------------------------------------------------------===//

#ifndef _ONEDPL_CSTDDEF
#define _ONEDPL_CSTDDEF

#include "oneapi/dpl/internal/common_config.h"
#include <cstddef>

namespace oneapi
{
namespace dpl
{
using ::std::max_align_t;
using ::std::nullptr_t;
using ::std::ptrdiff_t;
using ::std::size_t;
} // namespace dpl
} // namespace oneapi

namespace dpl = oneapi::dpl;

#endif // _ONEDPL_CSTDDEF
