You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
256 B
11 lines
256 B
7 months ago
|
|
||
|
#if defined(__GNUC__) || defined(HAS_LONG_LONG)
|
||
|
typedef long long llse_loff_t;
|
||
|
#else
|
||
|
typedef long llse_loff_t;
|
||
|
#endif
|
||
|
|
||
|
extern llse_loff_t llse_llseek(unsigned int fd,
|
||
|
llse_loff_t offset,
|
||
|
unsigned int origin);
|