* sysdeps/generic/_G_config.h: Update _G_iconv_t type from Linux
	version.
This commit is contained in:
Ulrich Drepper 1999-08-13 20:09:32 +00:00
parent f9181e0e06
commit 0697cdc395
2 changed files with 10 additions and 3 deletions

View File

@ -1,5 +1,8 @@
1999-08-13 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/generic/_G_config.h: Update _G_iconv_t type from Linux
version.
* po/fr.po: Update.
1999-08-11 Thorsten Kukuk <kukuk@suse.de>

View File

@ -40,10 +40,14 @@ typedef struct
#define _G_wint_t wint_t
#define _G_stat64 stat
#include <gconv.h>
typedef struct
typedef union
{
__gconv_t __cd;
struct __gconv_step_data __data;
struct __gconv_info __cd;
struct
{
struct __gconv_info __cd;
struct __gconv_step_data __data;
} __combined;
} _G_iconv_t;
typedef int _G_int16_t __attribute__ ((__mode__ (__HI__)));