Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / src / ppc403 / lseek.c
1 /* lseek.c -- move read/write pointer.\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 <sys/types.h>\r
16 #include <errno.h>\r
17 #include "glue.h"\r
18 \r
19 /*\r
20  * lseek --  Since a serial port is non-seekable, we return an error.\r
21  */\r
22 off_t\r
23 _DEFUN (lseek, (fd,  offset, whence),\r
24        int fd _AND\r
25        off_t offset _AND\r
26        int whence)\r
27 {\r
28   #ifdef debuglg\r
29   prs("[lseek]\n");\r
30   inbyte();\r
31   #endif\r
32   SET_ERRNO (ESPIPE); \r
33   return ((off_t)-1);\r
34 }\r
35 \r