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

stdio.h « sys « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a99308161313ac5c1a4baaf6d0069472ae3fe589 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef _NEWLIB_STDIO_H
#define _NEWLIB_STDIO_H

/* Internal locking macros, used to protect stdio functions.  In the
   linux case, expand to flockfile, and funlockfile, both defined in
   LinuxThreads. */
#if !defined(__SINGLE_THREAD__)
#  if !defined(_flockfile)
#    define _flockfile(fp) flockfile(fp)
#  endif
#  if !defined(_funlockfile)
#    define _funlockfile(fp) funlockfile(fp)
#  endif
#endif /* __SINGLE_THREAD__ */

#define getline __getline
#define getdelim __getdelim

char *	_EXFUN(ctermid, (char *));

#endif /* _NEWLIB_STDIO_H */