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

Side by Side Diff: src/common/mac/include/features.h

Issue 1973113002: Replaced glibc version of elf.h with musl version of elf.h. (Closed) Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Added comment to change in elf_reader Created 4 years, 7 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
« no previous file with comments | « src/common/dwarf/elf_reader.cc ('k') | src/third_party/glibc/COPYING » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // This file is included by third_party/glibc/elf/elf.h
2 // We use it to map a couple of glibc specific macros
3 // over to their OS X equivalents.
4
5
6 // Map GNU endianness macros over to OS X endianness macros.
7
8 #ifndef __LITTLE_ENDIAN
9 #define __LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__
10 #endif
11 #ifndef __BIG_ENDIAN
12 #define __BIG_ENDIAN __ORDER_BIG_ENDIAN__
13 #endif
14 #ifndef __BYTE_ORDER
15 #define __BYTE_ORDER __BYTE_ORDER__
16 #endif
OLDNEW
« no previous file with comments | « src/common/dwarf/elf_reader.cc ('k') | src/third_party/glibc/COPYING » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698