Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / src / ppc403 / write.c
1 /* write.c -- write bytes to an output 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 extern int  _EXFUN (outbyte, (char x));\r
18 \r
19 /*\r
20  * write -- write bytes to the serial port. Ignore fd, since\r
21  *          stdout and stderr are the same. Since we have no filesystem,\r
22  *          open will only return an error.\r
23  */\r
24 int\r
25 _DEFUN (write, (fd, buf, nbytes),\r
26        int fd _AND\r
27        char *buf _AND\r
28        int nbytes)\r
29 {\r
30   int i;\r
31 \r
32   #ifdef debuglg\r
33   prs("[write]\n");\r
34   #endif\r
35   for (i = 0; i < nbytes; i++) {\r
36     if (*(buf + i) == '\n') {\r
37       outbyte ('\r');\r
38     }\r
39     outbyte (*(buf + i));\r
40   }\r
41   return (nbytes);\r
42 }\r