stdio: Define BUFSIZ
This commit is contained in:
parent
432395218a
commit
c0a1d8e960
1 changed files with 8 additions and 2 deletions
|
@ -58,7 +58,13 @@
|
||||||
|
|
||||||
#define FILENAME_MAX _POSIX_NAME_MAX
|
#define FILENAME_MAX _POSIX_NAME_MAX
|
||||||
|
|
||||||
/* File system error values *************************************************/
|
/* The size of the I/O buffers */
|
||||||
|
|
||||||
|
#if CONFIG_STDIO_BUFFER_SIZE > 0
|
||||||
|
# define BUFSIZ CONFIG_STDIO_BUFFER_SIZE
|
||||||
|
#endif
|
||||||
|
|
||||||
|
/* File system error values */
|
||||||
|
|
||||||
#define EOF (-1)
|
#define EOF (-1)
|
||||||
|
|
||||||
|
@ -94,7 +100,7 @@
|
||||||
|
|
||||||
#define L_tmpnam CONFIG_LIBC_MAX_TMPFILE
|
#define L_tmpnam CONFIG_LIBC_MAX_TMPFILE
|
||||||
|
|
||||||
/* the maximum number of unique temporary file names that can be generated */
|
/* The maximum number of unique temporary file names that can be generated */
|
||||||
|
|
||||||
#define TMP_MAX 56800235584ull
|
#define TMP_MAX 56800235584ull
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue