about summary refs log tree commit diff
path: root/sysdeps/generic/htons.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/htons.c')
-rw-r--r--sysdeps/generic/htons.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sysdeps/generic/htons.c b/sysdeps/generic/htons.c
index dc426123a0..95c94de8a3 100644
--- a/sysdeps/generic/htons.c
+++ b/sysdeps/generic/htons.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1993, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1993,97,2002 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -21,9 +21,9 @@
 #undef	htons
 #undef	ntohs
 
-u_int16_t
+uint16_t
 htons (x)
-     u_int16_t x;
+     uint16_t x;
 {
 #if BYTE_ORDER == BIG_ENDIAN
   return x;