]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/uclibc/lib/backends/minimal_io/close.c
update
[l4.git] / l4 / pkg / uclibc / lib / backends / minimal_io / close.c
1 /*
2  * (c) 2008-2009 Technische Universität Dresden
3  * This file is part of TUD:OS and distributed under the terms of the
4  * GNU Lesser General Public License 2.1.
5  * Please see the COPYING-LGPL-2.1 file for details.
6  */
7 #include <stdio.h>
8 #include <errno.h>
9
10 int close(int fd);
11
12 int close(int fd)
13 {
14   (void)fd;
15   printf("close() called: unimplemented!\n");
16   errno = EINVAL;
17   return -EINVAL;
18 }
19