mariadb/linux/toku_htonl.h
Rich Prohaska 9581c5c539 merge 1032 src/tests to 1032b. addresses #1032
git-svn-id: file:///svn/toku/tokudb.1032b@7835 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:28 -04:00

27 lines
334 B
C

#ifndef _TOKU_HTONL_H
#define _TOKU_HTONL_H
#if !__linux__
#error
#endif
#if __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 __cplusplus
};
#endif
#endif