aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/net/ServerSocket.java
AgeCommit message (Expand)AuthorFilesLines
2008-06-28Import GNU Classpath (classpath-0_97_2-release).Matthias Klose1-2/+2
2007-06-03libjava/classpath/ChangeLog.gcj:Matthias Klose1-5/+2
2007-01-09Merged gcj-eclipse branch to trunk.Tom Tromey1-39/+70
2006-01-15Update copyright year for last patch.Anthony Green1-1/+1
2006-01-15ServerSocket.java (accept): Remove bogus security check.Anthony Green1-5/+3
2005-11-15Imported GNU Classpath 0.19 + gcj-import-20051115.Mark Wielaard1-1/+3
2005-07-16Initial revisionTom Tromey1-0/+599
20/master Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/dirent/closedir.c
blob: 00d9333772c3259a24bbfd2b6fe88951a0498e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* Copyright (C) 1991-2017 Free Software Foundation, Inc.
   This file is part of the GNU C Library.

   The GNU C Library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2.1 of the License, or (at your option) any later version.

   The GNU C Library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with the GNU C Library; if not, see
   <http://www.gnu.org/licenses/>.  */

#include <errno.h>
#include <stddef.h>
#include <dirent.h>


/* Close the directory stream DIRP.
   Return 0 if successful, -1 if not.  */
int
__closedir (DIR *dirp)
{
  __set_errno (ENOSYS);
  return -1;
}
weak_alias (__closedir, closedir)

stub_warning (closedir)