Skip to content

Commit

Permalink
- Fix ypedef -> typedef
Browse files Browse the repository at this point in the history
  • Loading branch information
kcbanner authored and andrewrk committed Jun 21, 2024
1 parent b6fd34a commit 0d12cae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/zig.h
Original file line number Diff line number Diff line change
Expand Up @@ -3089,7 +3089,7 @@ typedef _Float32 zig_f32;
#undef zig_has_f32
#define zig_has_f32 0
#define zig_repr_f32 u32
ypedef uint32_t zig_f32;
typedef uint32_t zig_f32;
#define zig_make_f32(fp, repr) repr
#undef zig_make_special_f32
#define zig_make_special_f32(sign, name, arg, repr) repr
Expand Down
2 changes: 1 addition & 1 deletion stage1/zig.h
Original file line number Diff line number Diff line change
Expand Up @@ -3089,7 +3089,7 @@ typedef _Float32 zig_f32;
#undef zig_has_f32
#define zig_has_f32 0
#define zig_repr_f32 u32
ypedef uint32_t zig_f32;
typedef uint32_t zig_f32;
#define zig_make_f32(fp, repr) repr
#undef zig_make_special_f32
#define zig_make_special_f32(sign, name, arg, repr) repr
Expand Down

0 comments on commit 0d12cae

Please sign in to comment.