4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 11:31:00 +08:00
Yaakov Selkowitz 9087163804 ansification: remove _DEFUN
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:26 -06:00

11 lines
103 B
C

/* isatty.c */
#include <unistd.h>
#include <reent.h>
int
isatty (int fd)
{
return _isatty (fd);
}