blob: 40d304cf0fae1f6f52ad523e6783b5f20be81e5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdio.h>
typedef struct __fpos_t * fpos_t;
/** file position **/
/***
is used to record information about individual positions within a TYPEDEF(FILE)
stream.
***/
/*
STDC(1)
*/
|