mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
c5cdf8f895
git-svn-id: file:///svn/toku/tokudb.1032b@8018 c7de825b-a66e-492c-adef-691d508d4ae1
27 lines
352 B
C
27 lines
352 B
C
#ifndef _TOKU_HTONL_H
|
|
#define _TOKU_HTONL_H
|
|
|
|
#if !__linux__
|
|
#error
|
|
#endif
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include <arpa/inet.h>
|
|
|
|
static inline uint32_t toku_htonl(uint32_t i) {
|
|
return htonl(i);
|
|
}
|
|
|
|
static inline uint32_t toku_ntohl(uint32_t i) {
|
|
return ntohl(i);
|
|
}
|
|
|
|
#if defined(__cplusplus)
|
|
};
|
|
#endif
|
|
|
|
#endif
|