blob: 31c7a4e7a1bf1f723fd6325f52af9b1136f5994f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#ifndef _STDIO_EXT_H
# include <stdio-common/stdio_ext.h>
extern int __fsetlocking_internal (FILE *__fp, int __type) attribute_hidden;
#ifndef NOT_IN_libc
# define __fsetlocking(fp, type) INTUSE(__fsetlocking) (fp, type)
#endif
#endif
|