[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / libc / src / stdlib / atoll.h
blobb3035fdc3918b77a7bf99bec0673e2c94d97f8bb
1 //===-- Implementation header for atoll -------------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIBC_SRC_STDLIB_ATOLL_H
10 #define LLVM_LIBC_SRC_STDLIB_ATOLL_H
12 #include "src/__support/macros/config.h"
14 namespace LIBC_NAMESPACE_DECL {
16 long long atoll(const char *str);
18 } // namespace LIBC_NAMESPACE_DECL
20 #endif // LLVM_LIBC_SRC_STDLIB_ATOLL_H