]> rtime.felk.cvut.cz Git - l4.git/blobdiff - l4/pkg/libc_backends/lib/minimal_io/be.cc
update
[l4.git] / l4 / pkg / libc_backends / lib / minimal_io / be.cc
index 589189c1da2ec80446dc111a0f8e564faf445335..a43c5b5973a52c00613228a4b541f76941deb7a0 100644 (file)
@@ -2,7 +2,8 @@
  * Simple libc-backend to satisfy write(1, x, y)
  */
 /*
- * (c) 2009 Technische Universität Dresden
+ * (c) 2009 Alexander Warg <warg@os.inf.tu-dresden.de>
+ *     economic rights: Technische Universität Dresden (Germany)
  * This file is part of TUD:OS and distributed under the terms of the
  * GNU Lesser General Public License 2.1.
  * Please see the COPYING-LGPL-2.1 file for details.
@@ -26,6 +27,11 @@ extern "C" ssize_t read(int, void *, size_t) L4_NOTHROW
   return -1;
 }
 
+extern "C" __off_t lseek(int, __off_t, int) L4_NOTHROW
+{
+  return -1;
+}
+
 extern "C" __off64_t lseek64(int, __off64_t, int) L4_NOTHROW
 {
   return -1;