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

Side by Side Diff: fusl/tools/mkalltypes.sed

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 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 | « fusl/tools/ld.musl-clang.in ('k') | fusl/tools/musl-clang.in » ('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 /^TYPEDEF/s/TYPEDEF \(.*\) \([^ ]*\);$/#if defined(__NEED_\2) \&\& !defined(__DE FINED_\2)\
2 typedef \1 \2;\
3 #define __DEFINED_\2\
4 #endif\
5 /
6 /^STRUCT/s/STRUCT * \([^ ]*\) \(.*\);$/#if defined(__NEED_struct_\1) \&\& !defin ed(__DEFINED_struct_\1)\
7 struct \1 \2;\
8 #define __DEFINED_struct_\1\
9 #endif\
10 /
11 /^UNION/s/UNION * \([^ ]*\) \(.*\);$/#if defined(__NEED_union_\1) \&\& !defined( __DEFINED_union_\1)\
12 union \1 \2;\
13 #define __DEFINED_union_\1\
14 #endif\
15 /
OLDNEW
« no previous file with comments | « fusl/tools/ld.musl-clang.in ('k') | fusl/tools/musl-clang.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698