diff options
author | Nicholas J. Kain <njkain@gmail.com> | 2011-02-15 07:32:09 -0500 |
---|---|---|
committer | Nicholas J. Kain <njkain@gmail.com> | 2011-02-15 07:32:09 -0500 |
commit | 1e12632591ab98a6ea3af8680716c28282552981 (patch) | |
tree | 5b79bd9a0b950d6ab414fef8cbb5dfcd1a6d2e83 /arch/x86_64/bits/stdio.h | |
parent | c2afb747b0296f23cd1903e82ccbdee3fc2978fd (diff) | |
download | musl-1e12632591ab98a6ea3af8680716c28282552981.tar.gz musl-1e12632591ab98a6ea3af8680716c28282552981.tar.xz musl-1e12632591ab98a6ea3af8680716c28282552981.zip |
Port musl to x86-64. One giant commit!
Diffstat (limited to 'arch/x86_64/bits/stdio.h')
-rw-r--r-- | arch/x86_64/bits/stdio.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/x86_64/bits/stdio.h b/arch/x86_64/bits/stdio.h new file mode 100644 index 00000000..0afd8b40 --- /dev/null +++ b/arch/x86_64/bits/stdio.h @@ -0,0 +1,10 @@ +#define BUFSIZ 1024 + +#define FILENAME_MAX 4095 +#define FOPEN_MAX 1000 +#define TMP_MAX 10000 + +#define L_cuserid 20 +#define L_ctermid 20 +#define L_tmpnam 20 +#define P_tmpdir "/tmp" |