Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / src / ppc403 / isatty.c
1 /* isatty.c -- chek the terminal device.\r
2  * \r
3  * Copyright (c) 1995 Cygnus Support\r
4  *\r
5  * The authors hereby grant permission to use, copy, modify, distribute,\r
6  * and license this software and its documentation for any purpose, provided\r
7  * that existing copyright notices are retained in all copies and that this\r
8  * notice is included verbatim in any distributions. No written agreement,\r
9  * license, or royalty fee is required for any of the authorized uses.\r
10  * Modifications to this software may be copyrighted by their authors\r
11  * and need not follow the licensing terms described here, provided that\r
12  * the new terms are clearly indicated on the first page of each file where\r
13  * they apply.\r
14  */\r
15 #include "glue.h"\r
16 \r
17 /*\r
18  * isatty -- returns 1 if connected to a terminal device,\r
19  *           returns 0 if not. Since we're hooked up to a\r
20  *           serial port, we'll say yes _AND return a 1.\r
21  */\r
22 int\r
23 _DEFUN (isatty, (fd),\r
24        int fd)\r
25 {\r
26   #ifdef debuglg\r
27   prs("[isatty]\n");\r
28   inbyte();\r
29   #endif\r
30   return (1);\r
31 }\r