Skip to content
Snippets Groups Projects
Commit 678eb7b7 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

Merged in paulpatience/nuttx/stdio (pull request #37)

stdio: Define BUFSIZ
parents 1b7d7a53 c0a1d8e9
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,13 @@
#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)
......@@ -94,7 +100,7 @@
#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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment