~ubuntu-branches/ubuntu/trusty/rhash/trusty

« back to all changes in this revision

Viewing changes to librhash/byte_order.h

  • Committer: Package Import Robot
  • Author(s): Aleksey Kravchenko
  • Date: 2013-09-16 19:48:55 UTC
  • mfrom: (1.2.1) (16.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130916194855-sengvtinypyl41ld
Tags: 1.3.0-1
* New upstream release version 1.3.0
 - switched the package back to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* byte_order.h */
2
2
#ifndef BYTE_ORDER_H
3
3
#define BYTE_ORDER_H
4
 
#include <stdint.h>
 
4
#include "ustd.h"
5
5
#include <stdlib.h>
6
6
 
7
7
#ifdef IN_RHASH
8
8
#include "config.h"
9
9
#endif
10
10
 
11
 
#if _MSC_VER > 1000
12
 
#include "platform-dependent.h"
13
 
#endif
14
 
 
15
11
#ifdef __GLIBC__
16
12
# include <endian.h>
17
13
#endif