aboutsummaryrefslogtreecommitdiff
path: root/inet/htonl.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@hack.frob.com>2014-10-24 12:37:36 -0700
committerRoland McGrath <roland@hack.frob.com>2014-10-24 12:37:36 -0700
commit70996a373dd38296254029423ae6d87c02e7184a (patch)
tree076fa71693036a75bd81b58a3acf95d3fe673c46 /inet/htonl.c
parente80514b5a87c86a92352ce526c4b9db85f2a242c (diff)
downloadglibc-70996a373dd38296254029423ae6d87c02e7184a.zip
glibc-70996a373dd38296254029423ae6d87c02e7184a.tar.gz
glibc-70996a373dd38296254029423ae6d87c02e7184a.tar.bz2
Prototypify htonl and htons definitions.
Diffstat (limited to 'inet/htonl.c')
-rw-r--r--inet/htonl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/inet/htonl.c b/inet/htonl.c
index 3829e4f..290e2ae 100644
--- a/inet/htonl.c
+++ b/inet/htonl.c
@@ -22,8 +22,7 @@
#undef ntohl
uint32_t
-htonl (x)
- uint32_t x;
+htonl (uint32_t x)
{
#if BYTE_ORDER == BIG_ENDIAN
return x;