2001-08-02 Jeff Johnston <jjohnstn@redhat.com>
* libc/include/stdio.h (BUFSIZ): Define to __BUFSIZ__ if provided,
        otherwise default.
			
			
This commit is contained in:
		| @@ -1,3 +1,8 @@ | |||||||
|  | 2001-08-02  Jeff Johnston  <jjohnstn@redhat.com> | ||||||
|  |  | ||||||
|  | 	* libc/include/stdio.h (BUFSIZ): Define to __BUFSIZ__ if provided, | ||||||
|  | 	otherwise default. | ||||||
|  |  | ||||||
| 2001-07-12  Aldy Hernandez  <aldyh@redhat.com> | 2001-07-12  Aldy Hernandez  <aldyh@redhat.com> | ||||||
|  |  | ||||||
|         * libc/machine/mips/setjmp.S: Allow mips16 and mips64 to coexist. |         * libc/machine/mips/setjmp.S: Allow mips16 and mips64 to coexist. | ||||||
|   | |||||||
| @@ -87,9 +87,14 @@ typedef struct __sFILE FILE; | |||||||
| #define	NULL	0 | #define	NULL	0 | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
| #define	BUFSIZ	1024 |  | ||||||
| #define	EOF	(-1) | #define	EOF	(-1) | ||||||
|  |  | ||||||
|  | #ifdef __BUFSIZ__ | ||||||
|  | #define	BUFSIZ		__BUFSIZ__ | ||||||
|  | #else | ||||||
|  | #define	BUFSIZ		1024 | ||||||
|  | #endif | ||||||
|  |  | ||||||
| #ifdef __FOPEN_MAX__ | #ifdef __FOPEN_MAX__ | ||||||
| #define FOPEN_MAX	__FOPEN_MAX__ | #define FOPEN_MAX	__FOPEN_MAX__ | ||||||
| #else | #else | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user