mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 11:31:00 +08:00
2f5de4af55
(__getdelim): Export. * include/sys/stdio.h (getline): Define as __getline. (getdelim): Define as __getdelim. * include/cygwin/version.h: Bump API minor number.
32 lines
737 B
C
32 lines
737 B
C
/* sys/stdio.h
|
|
|
|
Copyright 2004, 2005 Red Hat, Inc.
|
|
|
|
This file is part of Cygwin.
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
details. */
|
|
|
|
#ifndef _SYS_STDIO_H_
|
|
#define _SYS_STDIO_H_
|
|
|
|
#include <sys/lock.h>
|
|
|
|
#if !defined(__SINGLE_THREAD__)
|
|
# if !defined(_flockfile)
|
|
# define _flockfile(fp) __cygwin_lock_lock ((_LOCK_T *)&(fp)->_lock)
|
|
# endif
|
|
# if !defined(_ftrylockfile)
|
|
# define _ftrylockfile(fp) __cygwin_lock_trylock ((_LOCK_T *)&(fp)->_lock)
|
|
# endif
|
|
# if !defined(_funlockfile)
|
|
# define _funlockfile(fp) __cygwin_lock_unlock ((_LOCK_T *)&(fp)->_lock)
|
|
# endif
|
|
#endif
|
|
|
|
#define getline __getline
|
|
#define getdelim __getdelim
|
|
|
|
#endif
|