Branch :
| Author | Commit | Date | CI | Message |
|---|---|---|---|---|
| 6145b561 | 2021-08-17 03:14:57 | test: Do not pass NULL as the first funopen() argument Warned-by: gcc -W | ||
| 25278891 | 2021-02-19 06:49:24 | Mark local functions as static Warned-by: gcc | ||
| f41fdcf1 | 2013-10-21 05:07:56 | Add funopen() function This is a wrapper over the glibc fopencookie() function. We diverge from the FreeBSD, OpenBSD and DragonFlyBSD declarations, because seekfn() there wrongly uses fpos_t, assuming it's an integral type, and any code using that on a system where fpos_t is a struct (such as GNU-based systems or NetBSD) will fail to build. In which case, as the code has to be modified anyway, we might just as well use the correct declaration. |