Logo

GitLab

Sign in

SGJP / Morfeusz

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Morfeusz
  • morfeusz
  • endianness.hpp
  • - dorobiona cross-kompilacja na windowsa ...
    1361ee30
    - refaktoryzacja kodu
    
    git-svn-id: svn://svn.nlp.ipipan.waw.pl/morfeusz/morfeusz@35 ff4e3ee1-f430-4e82-ade0-24591c43f1fd
    Michał Lenart authored
    2013-12-01 22:41:43 +0000  
    Browse File »
endianness.hpp 295 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/* 
 * 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 */