diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-24 15:27:52 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-04-24 15:27:52 +0000 |
commit | 9f7b4a6b6bd3a569c81ed237f7650d65e98c3970 (patch) | |
tree | f23a44d6705d8183194e52d9e7aafd4bcf9bcc8e /gcc/real.c | |
parent | 06343e77f8cf2da51bf3d7c17215999b449a8dc8 (diff) | |
download | gcc-9f7b4a6b6bd3a569c81ed237f7650d65e98c3970.tar.gz |
(etoe53, etoe24): Make all occurrences static.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7144 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/real.c')
-rw-r--r-- | gcc/real.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/real.c b/gcc/real.c index fecd932a6f7..fb06d181b00 100644 --- a/gcc/real.c +++ b/gcc/real.c @@ -3338,7 +3338,7 @@ toe53 (x, y) #else #ifdef IBM -void +static void etoe53 (x, e) unsigned EMUSHORT *x, *e; { @@ -3354,7 +3354,7 @@ toe53 (x, y) #else /* it's neither DEC nor IBM */ -void +static void etoe53 (x, e) unsigned EMUSHORT *x, *e; { @@ -3473,7 +3473,7 @@ toe53 (x, y) #ifdef IBM -void +static void etoe24 (x, e) unsigned EMUSHORT *x, *e; { @@ -3489,7 +3489,7 @@ toe24 (x, y) #else -void +static void etoe24 (x, e) unsigned EMUSHORT *x, *e; { @@ -5626,8 +5626,8 @@ ditoe (di, e) /* Convert e-type to unsigned 64-bit int. */ -void -static etoudi (x, i) +static void +etoudi (x, i) unsigned EMUSHORT *x; unsigned EMUSHORT *i; { |