mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	wint_t is a little finicky because it might be defined by stddef.h, which belongs to the compiler. In addition to the _types_, a bunch of other declarations shared between wctype.h and wchar.h are factored out to their own header. * libio/bits/types/FILE.h, libio/bits/types/__FILE.h * wcsmbs/bits/types/mbstate_t.h, wcsmbs/bits/types/__mbstate_t.h * wcsmbs/bits/types/wint_t.h: New single-type definition files. * wctype/bits/wctype-wchar.h: New file holding declarations shared between wctype.h and wchar.h. * libio/Makefile, wcsmbs/Makefile, wctype/Makefile: Install them. * include/bits/types/FILE.h, include/bits/types/__FILE.h * include/bits/types/mbstate_t.h, include/bits/types/__mbstate_t.h * include/bits/types/wint_t.h, include/bits/wcsmbs-wchar.h: New wrappers. * include/stdio.h, include/wchar.h, include/wctype.h: No need to handle __need macros. * grp/grp.h, gshadow/gshadow.h, hurd/hurd.h, iconv/gconv.h * libio/stdio.h, mach/mach.h, misc/mntent.h, pwd/pwd.h * shadow/shadow.h, stdio-common/printf.h, wcsmbs/uchar.h * wcsmbs/wchar.h, wctype/wctype.h * sysdeps/generic/_G_config.h, sysdeps/unix/sysv/linux/_G_config.h Use the new files instead of __need macros.
		
			
				
	
	
		
			59 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* This file is needed by libio to define various configuration parameters.
 | |
|    These are always the same in the GNU C library.  */
 | |
| 
 | |
| #ifndef _G_config_h
 | |
| #define _G_config_h 1
 | |
| 
 | |
| /* Define types for libio in terms of the standard internal type names.  */
 | |
| 
 | |
| #include <bits/types.h>
 | |
| #define __need_size_t
 | |
| #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
 | |
| # define __need_wchar_t
 | |
| #endif
 | |
| #define __need_NULL
 | |
| #include <stddef.h>
 | |
| 
 | |
| #include <bits/types/__mbstate_t.h>
 | |
| #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
 | |
| # include <bits/types/wint_t.h>
 | |
| #endif
 | |
| 
 | |
| typedef struct
 | |
| {
 | |
|   __off_t __pos;
 | |
|   __mbstate_t __state;
 | |
| } _G_fpos_t;
 | |
| typedef struct
 | |
| {
 | |
|   __off64_t __pos;
 | |
|   __mbstate_t __state;
 | |
| } _G_fpos64_t;
 | |
| #if defined _LIBC || defined _GLIBCPP_USE_WCHAR_T
 | |
| # include <gconv.h>
 | |
| typedef union
 | |
| {
 | |
|   struct __gconv_info __cd;
 | |
|   struct
 | |
|   {
 | |
|     struct __gconv_info __cd;
 | |
|     struct __gconv_step_data __data;
 | |
|   } __combined;
 | |
| } _G_iconv_t;
 | |
| #endif
 | |
| 
 | |
| 
 | |
| /* These library features are always available in the GNU C library.  */
 | |
| #define _G_va_list __gnuc_va_list
 | |
| 
 | |
| #define _G_HAVE_MMAP 1
 | |
| 
 | |
| #define _G_IO_IO_FILE_VERSION 0x20001
 | |
| 
 | |
| /* This is defined by <bits/stat.h> if `st_blksize' exists.  */
 | |
| #define _G_HAVE_ST_BLKSIZE defined (_STATBUF_ST_BLKSIZE)
 | |
| 
 | |
| #define _G_BUFSIZ 8192
 | |
| 
 | |
| #endif	/* _G_config.h */
 |