zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

bswap.h (281B) - Raw


      1 /*      $NetBSD: bswap.h,v 1.6 2014/01/29 01:36:43 matt Exp $      */
      2 
      3 #ifndef _ARM_BSWAP_H_
      4 #define	_ARM_BSWAP_H_
      5 
      6 #ifdef __aarch64__
      7 #include <aarch64/byte_swap.h>
      8 #else
      9 #include <arm/byte_swap.h>
     10 #endif
     11 
     12 #define __BSWAP_RENAME
     13 #include <sys/bswap.h>
     14 
     15 #endif /* !_ARM_BSWAP_H_ */