blob: 0d09764f6056d6eefaad3f1af0fd45bdba1762ad [file] [log] [blame]
//===-- RandUtils.cpp -----------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "RandUtils.h"
#include <cstdlib>
namespace LIBC_NAMESPACE {
namespace testutils {
int rand() { return std::rand(); }
} // namespace testutils
} // namespace LIBC_NAMESPACE