about summary refs log tree commit diff
path: root/inet
diff options
context:
space:
mode:
Diffstat (limited to 'inet')
-rw-r--r--inet/htonl.c3
-rw-r--r--inet/htons.c3
2 files changed, 2 insertions, 4 deletions
diff --git a/inet/htonl.c b/inet/htonl.c
index 3829e4f0cf..290e2ae89b 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;
diff --git a/inet/htons.c b/inet/htons.c
index 6305996126..42fb723539 100644
--- a/inet/htons.c
+++ b/inet/htons.c
@@ -21,8 +21,7 @@
 #undef	ntohs
 
 uint16_t
-htons (x)
-     uint16_t x;
+htons (uint16_t x)
 {
 #if BYTE_ORDER == BIG_ENDIAN
   return x;