| 1 | #ifndef _____fpos_t_defined | 
|---|---|
| 2 | #define _____fpos_t_defined 1 | 
| 3 | |
| 4 | #include <bits/types.h> | 
| 5 | #include <bits/types/__mbstate_t.h> | 
| 6 | |
| 7 | /* The tag name of this struct is _G_fpos_t to preserve historic | 
| 8 | C++ mangled names for functions taking fpos_t arguments. | 
| 9 | That name should not be used in new code. */ | 
| 10 | typedef struct _G_fpos_t | 
| 11 | { | 
| 12 | __off_t __pos; | 
| 13 | __mbstate_t __state; | 
| 14 | } __fpos_t; | 
| 15 | |
| 16 | #endif | 
| 17 | 
