aboutsummaryrefslogtreecommitdiff
path: root/libjava/classpath/java/io/PrintWriter.java
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2008-11-12 21:55:13 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2008-11-12 21:55:13 +0100
commit4bf95cef95a966c0ed8325cf8a572c98a3cc0e90 (patch)
tree6785b58cfdd6121c5789e7ff48659fa27fa86f0c /libjava/classpath/java/io/PrintWriter.java
parent41b81065aeaf755949819944088e09aa528a9b06 (diff)
downloadgcc-4bf95cef95a966c0ed8325cf8a572c98a3cc0e90.zip
gcc-4bf95cef95a966c0ed8325cf8a572c98a3cc0e90.tar.gz
gcc-4bf95cef95a966c0ed8325cf8a572c98a3cc0e90.tar.bz2
re PR libgcj/33764 (gij is built as 32-bit binary when building multilib gcc)
PR libgcj/33764 libjava/ * configure.ac (INSTALL_BINARIES): New AM_CONDITIONAL. * Makefile.am: If not INSTALL_BINARIES, use noinst_PROGRAMS instead of bin_PROGRAMS for binaries. * configure: Regenerated. * Makefile.in: Regenerated. libjava/classpath/ * configure.ac (INSTALL_BINARIES): New AM_CONDITIONAL. * tools/Makefile.am: If not INSTALL_BINARIES, use noinst_PROGRAMS instead of bin_PROGRAMS for binaries. * configure: Regenerated. * tools/Makefile.in: Regenerated. From-SVN: r141801
Diffstat (limited to 'libjava/classpath/java/io/PrintWriter.java')
0 files changed, 0 insertions, 0 deletions
on> Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/cuserid.c
blob: 1d9d17c7b6ee3b3eb4f3d42cc775efaa78767b7f (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
34
35
/* Copyright (C) 1991, 1995, 1996, 1997 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 Library General Public License as
   published by the Free Software Foundation; either version 2 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
   Library General Public License for more details.

   You should have received a copy of the GNU Library General Public
   License along with the GNU C Library; see the file COPYING.LIB.  If not,
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.  */

#include <stdio.h>
#include <errno.h>

/* Return the username of the caller.
   If S is not NULL, it points to a buffer of at least L_cuserid bytes
   into which the name is copied; otherwise, a static buffer is used.  */
char *
cuserid (s)
     char *s;
{
  __set_errno (ENOSYS);
  return NULL;
}


stub_warning (cuserid)
#include <stub-tag.h>