From 8a46b94f6ce2aeeb147184fbeaee8d6fb2e7a256 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Mon, 6 Feb 2006 04:27:16 +0000 Subject: decLibrary.c (__dec_byte_swap): Use uint32_t for argument and return types. * decLibrary.c (__dec_byte_swap): Use uint32_t for argument and return types. From-SVN: r110638 --- libdecnumber/decLibrary.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'libdecnumber/decLibrary.c') diff --git a/libdecnumber/decLibrary.c b/libdecnumber/decLibrary.c index 1576f28..19468ac 100644 --- a/libdecnumber/decLibrary.c +++ b/libdecnumber/decLibrary.c @@ -1,5 +1,5 @@ /* Temporary library support for decimal floating point. - Copyright (C) 2005 Free Software Foundation, Inc. + Copyright (C) 2005, 2006 Free Software Foundation, Inc. This file is part of GCC. @@ -81,13 +81,13 @@ __dfp_raise (int exception __attribute__ ((unused))) raise (SIGFPE); } -unsigned long -__dec_byte_swap (unsigned long in) +uint32_t +__dec_byte_swap (uint32_t in) { - unsigned long out; + uint32_t out = 0; unsigned char *p = (unsigned char *) &out; union { - unsigned long i; + uint32_t i; unsigned char b[4]; } u; -- cgit v1.1