This website works better with JavaScript.
Home
Help
Sign In
tmeissner
/
build_your_own_lisp
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Activity
Browse Source
Move err struct member into anonymous union
master
T. Meissner
6 years ago
parent
64721ec25b
commit
0e78985a89
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
chapter_08/lispy.c
+ 1
- 1
chapter_08/lispy.c
View File
@ -37,8 +37,8 @@ typedef struct {
union
{
union
{
long
num
;
long
num
;
double
dec
;
double
dec
;
int
err
;
}
;
}
;
int
err
;
}
lval
;
}
lval
;
Write
Preview
Loading…
Cancel
Save