Welcome to mirror list, hosted at ThFree Co, Russian Federation.

stdio.h « sys « include « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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 */