Update to 2.0.0 tree from current Fremantle build
[opencv] / apps / Hawk / CVEiCL / EiC / src / ppc403 / stat.c
diff --git a/apps/Hawk/CVEiCL/EiC/src/ppc403/stat.c b/apps/Hawk/CVEiCL/EiC/src/ppc403/stat.c
deleted file mode 100644 (file)
index 3506939..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-/* stat.c -- Get the status of a file.\r
- *\r
- * Copyright (c) 1995 Cygnus Support\r
- *\r
- * The authors hereby grant permission to use, copy, modify, distribute,\r
- * and license this software and its documentation for any purpose, provided\r
- * that existing copyright notices are retained in all copies and that this\r
- * notice is included verbatim in any distributions. No written agreement,\r
- * license, or royalty fee is required for any of the authorized uses.\r
- * Modifications to this software may be copyrighted by their authors\r
- * and need not follow the licensing terms described here, provided that\r
- * the new terms are clearly indicated on the first page of each file where\r
- * they apply.\r
- */\r
-#include <sys/stat.h>\r
-#include <errno.h>\r
-#include "glue.h"\r
-\r
-/*\r
- * stat -- Since we have no file system, we just return an error.\r
- */\r
-int\r
-_DEFUN (stat, (path, buf),\r
-       const char *path _AND\r
-       struct stat *buf)\r
-{\r
-  #ifdef debuglg\r
-  prs("[stat]\n");\r
-  inbyte();\r
-  #endif\r
-  SET_ERRNO (EIO);\r
-  return (-1);\r
-}\r
-\r