diff options
Diffstat (limited to 'userland/libc/arpa/inet/ntohs.c')
-rw-r--r-- | userland/libc/arpa/inet/ntohs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/userland/libc/arpa/inet/ntohs.c b/userland/libc/arpa/inet/ntohs.c index e0324ff..0a97b50 100644 --- a/userland/libc/arpa/inet/ntohs.c +++ b/userland/libc/arpa/inet/ntohs.c @@ -3,5 +3,5 @@ #include <stdint.h> uint16_t ntohs(uint16_t nl) { - return htons(nl); + return htons(nl); } |