aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/sql/Time.h
diff options
context:
space:
mode:
authorVincent Celier <celier@adacore.com>2007-04-06 11:22:50 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2007-04-06 11:22:50 +0200
commit7616900d855c17029e6395dcaf3db3dac95cdbe3 (patch)
treef217fda184f246e27899107b2627714995425d5c /libjava/java/sql/Time.h
parentdf777314f1fcc8cce837e8c86c56d60425fe875c (diff)
downloadgcc-7616900d855c17029e6395dcaf3db3dac95cdbe3.zip
gcc-7616900d855c17029e6395dcaf3db3dac95cdbe3.tar.gz
gcc-7616900d855c17029e6395dcaf3db3dac95cdbe3.tar.bz2
gprep.adb (Process_Files.Process_One_File): Use full file name when issuing pragma Source_Reference.
2007-04-06 Vincent Celier <celier@adacore.com> * gprep.adb (Process_Files.Process_One_File): Use full file name when issuing pragma Source_Reference. From-SVN: r123576
Diffstat (limited to 'libjava/java/sql/Time.h')
0 files changed, 0 insertions, 0 deletions
63/master Unnamed repository; edit this file 'description' to name the repository.root
aboutsummaryrefslogtreecommitdiff
path: root/libio/iofread.c
blob: babe2c54cc5e447bcf8ee5578a8a7f05a61b2bf1 (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
36
37
38
39
40
41
42
/*
Copyright (C) 1993, 1995 Free Software Foundation

This file is part of the GNU IO Library.  This library is free
software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option)
any later version.

This 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 General Public License for more details.

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

As a special exception, if you link this library with files
compiled with a GNU compiler to produce an executable, this does not cause
the resulting executable to be covered by the GNU General Public License.
This exception does not however invalidate any other reasons why
the executable file might be covered by the GNU General Public License. */

#include "libioP.h"

_IO_size_t
_IO_fread (buf, size, count, fp)
     void *buf;
     _IO_size_t size;
     _IO_size_t count;
     _IO_FILE* fp;
{
  _IO_size_t bytes_requested = size*count;
  _IO_size_t bytes_read;
  CHECK_FILE (fp, 0);
  if (bytes_requested == 0)
    return 0;
  bytes_read = _IO_sgetn (fp, (char *) buf, bytes_requested);
  return bytes_requested == bytes_read ? count : bytes_read / size;
}
weak_alias (_IO_fread, fread)