mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
ed4932362d
This reverts commit dcebfb11bc
.
39 lines
673 B
C
39 lines
673 B
C
/*
|
|
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @addtogroup posix_sockets
|
|
*/
|
|
/**
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief System-internal byte operations.
|
|
*
|
|
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
|
|
*/
|
|
#ifndef SYS_BYTES_H
|
|
#define SYS_BYTES_H
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "byteorder.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef size_t socklen_t; /**< socket address length */
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SYS_BYTES_H */
|
|
/** @} */
|