Blame view

morfeusz/deserialization/endianness.hpp 269 Bytes
Michał Lenart authored
1
2
3
4
5
6
7
8
9
10
/* 
 * File:   endianness.hpp
 * Author: lennyn
 *
 * Created on December 1, 2013, 8:45 PM
 */

#ifndef ENDIANNESS_HPP
#define	ENDIANNESS_HPP
Michał Lenart authored
11
#if defined _WIN64 || defined _WIN32
Michał Lenart authored
12
13
14
15
16
17
18
#include <winsock2.h>
#else
#include <netinet/in.h>
#endif

#endif	/* ENDIANNESS_HPP */