138b6f58eSMichael Jones //===-- Implementation header for rand --------------------------*- C++ -*-===// 238b6f58eSMichael Jones // 338b6f58eSMichael Jones // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 438b6f58eSMichael Jones // See https://llvm.org/LICENSE.txt for license information. 538b6f58eSMichael Jones // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 638b6f58eSMichael Jones // 738b6f58eSMichael Jones //===----------------------------------------------------------------------===// 838b6f58eSMichael Jones 938b6f58eSMichael Jones #ifndef LLVM_LIBC_SRC_STDLIB_RAND_H 1038b6f58eSMichael Jones #define LLVM_LIBC_SRC_STDLIB_RAND_H 1138b6f58eSMichael Jones 12*33bdb53dSJob Henandez Lara #include "hdr/stdlib_macros.h" 135ff3ff33SPetr Hosek #include "src/__support/macros/config.h" 14270547f3SGuillaume Chatelet 155ff3ff33SPetr Hosek namespace LIBC_NAMESPACE_DECL { 1638b6f58eSMichael Jones 1738b6f58eSMichael Jones int rand(void); 1838b6f58eSMichael Jones 195ff3ff33SPetr Hosek } // namespace LIBC_NAMESPACE_DECL 2038b6f58eSMichael Jones 2138b6f58eSMichael Jones #endif // LLVM_LIBC_SRC_STDLIB_RAND_H 22