Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: fusl/arch/powerpc/bits/endian.h

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 #ifdef __BIG_ENDIAN__ 1 #ifdef __BIG_ENDIAN__
2 #if __BIG_ENDIAN__ 2 #if __BIG_ENDIAN__
3 #define __BYTE_ORDER __BIG_ENDIAN 3 #define __BYTE_ORDER __BIG_ENDIAN
4 #endif 4 #endif
5 #endif /* __BIG_ENDIAN__ */ 5 #endif /* __BIG_ENDIAN__ */
6 6
7 #ifdef __LITTLE_ENDIAN__ 7 #ifdef __LITTLE_ENDIAN__
8 #if __LITTLE_ENDIAN__ 8 #if __LITTLE_ENDIAN__
9 #define __BYTE_ORDER __LITTLE_ENDIAN 9 #define __BYTE_ORDER __LITTLE_ENDIAN
10 #endif 10 #endif
11 #endif /* __LITTLE_ENDIAN__ */ 11 #endif /* __LITTLE_ENDIAN__ */
12 12
13 #ifndef __BYTE_ORDER 13 #ifndef __BYTE_ORDER
14 #define __BYTE_ORDER __BIG_ENDIAN 14 #define __BYTE_ORDER __BIG_ENDIAN
15 #endif 15 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698