]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
byteorder: include endian.h for good measure
authorSage Weil <sage@newdream.net>
Thu, 8 Oct 2009 22:18:05 +0000 (15:18 -0700)
committerSage Weil <sage@newdream.net>
Thu, 8 Oct 2009 22:18:05 +0000 (15:18 -0700)
src/include/byteorder.h

index cdd003781dd763c6f69a1cfeb7d55c1f5dd7454f..32b4b3903d4c24f003437fbd69215d16154a3870 100644 (file)
@@ -7,6 +7,8 @@
 #ifndef _CEPH_BYTEORDER_H
 #define _CEPH_BYTEORDER_H
 
+#include "endian.h"
+
 static __inline__ __u16 swab16(__u16 val) 
 {
   return (val >> 8) | (val << 8);