mirror of
https://github.com/apache/nuttx.git
synced 2026-05-26 02:36:11 +08:00
Switching to C99 stdint.h types
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2340 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
+8
-6
@@ -1,7 +1,7 @@
|
||||
/****************************************************************************
|
||||
* arpa/inet.h
|
||||
* include/arpa/inet.h
|
||||
*
|
||||
* Copyright (C) 2007 Gregory Nutt. All rights reserved.
|
||||
* Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
|
||||
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
@@ -41,7 +41,9 @@
|
||||
****************************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <stdint.h>
|
||||
#include <netinet/in.h>
|
||||
|
||||
/****************************************************************************
|
||||
@@ -89,10 +91,10 @@ extern "C" {
|
||||
|
||||
/* Functions to convert between nost and network byte ordering */
|
||||
|
||||
EXTERN uint32 ntohl (uint32 nl);
|
||||
EXTERN uint16 ntohs (uint16 ns);
|
||||
EXTERN uint32 htonl (uint32 hl);
|
||||
EXTERN uint16 htons (uint16 hs);
|
||||
EXTERN uint32_t ntohl(uint32_t nl);
|
||||
EXTERN uint16_t ntohs(uint16_t ns);
|
||||
EXTERN uint32_t htonl(uint32_t hl);
|
||||
EXTERN uint16_t htons(uint16_t hs);
|
||||
|
||||
/* Functions to manipulate address representations */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user