Bump version to 19.1.0 (final)
[llvm-project.git] / libc / include / llvm-libc-macros / stdio-macros.h
blob69fb71ad3f65159d1b570ec88bae7d1a63187a55
1 //===-- Macros defined in stdio.h header file -----------------------------===//
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_MACROS_STDIO_MACROS_H
10 #define LLVM_LIBC_MACROS_STDIO_MACROS_H
12 #ifndef EOF
13 #define EOF (-1)
14 #endif
16 #define BUFSIZ 1024
18 #define _IONBF 2
19 #define _IOLBF 1
20 #define _IOFBF 0
22 #endif // LLVM_LIBC_MACROS_STDIO_MACROS_H