2022-03-15 08:26:41 +00:00
|
|
|
//===-- Definition of macros to be used with file seek functions ----------===//
|
2022-01-25 19:50:00 +00:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2024-02-28 12:53:56 -08:00
|
|
|
#ifndef LLVM_LIBC_MACROS_FILE_SEEK_MACROS_H
|
|
|
|
#define LLVM_LIBC_MACROS_FILE_SEEK_MACROS_H
|
2022-01-25 19:50:00 +00:00
|
|
|
|
|
|
|
#define SEEK_SET 0
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
#define SEEK_END 2
|
|
|
|
|
2024-02-28 12:53:56 -08:00
|
|
|
#endif // LLVM_LIBC_MACROS_FILE_SEEK_MACROS_H
|