diff options
author | Tristan Gingold <tgingold@free.fr> | 2014-11-18 19:14:23 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2014-11-18 19:14:23 +0100 |
commit | 65945d1b0fef7ad3e087adc6a20891fcb2c1652a (patch) | |
tree | d93bde1a9581a87a5e66a1d65239911c15c6d154 /src/grt | |
parent | f30843a0844f083dfb8780e13839622d28ec2fb9 (diff) | |
download | ghdl-65945d1b0fef7ad3e087adc6a20891fcb2c1652a.tar.gz ghdl-65945d1b0fef7ad3e087adc6a20891fcb2c1652a.tar.bz2 ghdl-65945d1b0fef7ad3e087adc6a20891fcb2c1652a.zip |
grt-stdio.ads: fix style.
Diffstat (limited to 'src/grt')
-rw-r--r-- | src/grt/grt-stdio.ads | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/src/grt/grt-stdio.ads b/src/grt/grt-stdio.ads index 229249ac9..990fc74b1 100644 --- a/src/grt/grt-stdio.ads +++ b/src/grt/grt-stdio.ads @@ -47,17 +47,13 @@ package Grt.Stdio is function fopen (path: chars; mode : chars) return FILEs; - function fwrite (buffer : voids; - size : size_t; - count : size_t; - stream : FILEs) - return size_t; - - function fread (buffer : voids; - size : size_t; - count : size_t; - stream : FILEs) - return size_t; + function fwrite + (buffer : voids; size : size_t; count : size_t; stream : FILEs) + return size_t; + + function fread + (buffer : voids; size : size_t; count : size_t; stream : FILEs) + return size_t; function fputc (c : int; stream : FILEs) return int; procedure fputc (c : int; stream : FILEs); |