endianness.hpp
295 Bytes
/*
* File: endianness.hpp
* Author: lennyn
*
* Created on December 1, 2013, 8:45 PM
*/
#ifndef ENDIANNESS_HPP
#define ENDIANNESS_HPP
#ifdef _WIN64
#include <winsock2.h>
#else
#ifdef _WIN32
#include <winsock2.h>
#else
#include <netinet/in.h>
#endif
#endif
#endif /* ENDIANNESS_HPP */