| 1 | #ifndef _____fpos64_t_defined |
|---|---|
| 2 | #define _____fpos64_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_fpos64_t to preserve historic |
| 8 | C++ mangled names for functions taking fpos_t and/or fpos64_t |
| 9 | arguments. That name should not be used in new code. */ |
| 10 | typedef struct _G_fpos64_t |
| 11 | { |
| 12 | __off64_t __pos; |
| 13 | __mbstate_t __state; |
| 14 | } __fpos64_t; |
| 15 | |
| 16 | #endif |
| 17 |