/* ----------------------------------------------------------------------------- * (c) The University of Glasgow 2002 * * static versions of the inline functions from HsNet.h * -------------------------------------------------------------------------- */ #define INLINE #include "HsNet.h" #include uint16_t my_htons(uint16_t v) { htons(v); } uint32_t my_htonl(uint32_t v) { htonl(v); } uint16_t my_ntohs(uint16_t v) { ntohs(v); }