diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-18 09:58:14 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2014-07-18 09:58:14 +0000 |
commit | 6670fda50c04fe71743e787a0ccc2318482e08e7 (patch) | |
tree | dc2bfa97a56b2e0b9e4729202cd749a21c087149 /gcc/ada/s-crtl.ads | |
parent | fcb2b0a41dcc073e4b4fbba6edbc38dacf2e6503 (diff) | |
download | gcc-6670fda50c04fe71743e787a0ccc2318482e08e7.tar.gz |
2014-07-18 Robert Dewar <dewar@adacore.com>
* g-memdum.adb, g-memdum.ads, exp_strm.adb: Minor reformatting.
2014-07-18 Pascal Obry <obry@adacore.com>
* s-crtl.ads, i-cstrea.ads (fputwc): New routine.
* a-witeio.adb (Put): On platforms where there is translation
done by the OS output the raw text.
(New_Line): Use Put above to properly handle the LM wide characters.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@212800 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/s-crtl.ads')
-rw-r--r-- | gcc/ada/s-crtl.ads | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ada/s-crtl.ads b/gcc/ada/s-crtl.ads index e2fe289156f..0e809ab4fa2 100644 --- a/gcc/ada/s-crtl.ads +++ b/gcc/ada/s-crtl.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2003-2013, Free Software Foundation, Inc. -- +-- Copyright (C) 2003-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -122,6 +122,9 @@ package System.CRTL is function fputc (C : int; stream : FILEs) return int; pragma Import (C, fputc, "fputc"); + function fputwc (C : int; stream : FILEs) return int; + pragma Import (C, fputwc, "fputwc"); + function fputs (Strng : chars; Stream : FILEs) return int; pragma Import (C, fputs, "fputs"); |