Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
29849507
...
29849507578cd57f1f5876b781b4c5c90bd8d382
authored
2002-09-24 14:15:56 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Changed mh_opcode_t type.
1 parent
cc5aa2b6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
mh/mh.h
mh/mh.h
View file @
2984950
...
...
@@ -62,10 +62,10 @@ enum mh_opcode
Format: mhop_branch offset */
mhop_branch
,
/* 2. Assign to numeric register
Format: mhop_num_asgn
number
*/
Format: mhop_num_asgn */
mhop_num_asgn
,
/* 3. Assign to string register
Format: mhop_str_asgn
length string
*/
Format: mhop_str_asgn */
mhop_str_asgn
,
/* 4. Numeric arg follows.
Format: mhop_num_arg number */
...
...
@@ -111,7 +111,8 @@ enum mh_opcode
/* 17. Set format specification.
Format: mhop_fmtspec number */
mhop_fmtspec
mhop_fmtspec
,
};
enum
mh_type
...
...
@@ -121,7 +122,7 @@ enum mh_type
mhtype_str
};
typedef
int
mh_opcode_t
;
typedef
enum
mh_opcode
mh_opcode_t
;
struct
mh_machine
;
typedef
void
(
*
mh_builtin_fp
)
__P
((
struct
mh_machine
*
));
...
...
Please
register
or
sign in
to post a comment