summaryrefslogtreecommitdiffstats
path: root/newlib/libc/include/sys/stdio.h
blob: 8177322a004c917adacd25afdecd0501709cf4ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef _NEWLIB_STDIO_H
#define _NEWLIB_STDIO_H

/* Internal locking macros, used to protect stdio functions.  In the
   general case, expand to nothing. */
#if !defined(_flockfile)
#  define _flockfile(fp)
#endif

#if !defined(_funlockfile)
#  define _funlockfile(fp)
#endif

#endif /* _NEWLIB_STDIO_H */