commit fe6c85f724bdef3c203b6ebc83c4fe0edfb3094a
parent 1775fd4145bc37c5cb629a3aa5d4eaa53329deeb
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Fri, 23 Aug 2019 18:52:48 +0100
[libmach] Cosmetic change in mach.h
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/scc/scc/mach.h b/include/scc/scc/mach.h
@@ -47,11 +47,11 @@ struct objsymdef {
struct objops {
int (*probe)(unsigned char *buf, char **name);
int (*new)(Obj *obj);
- int (*read)(Obj *obj, FILE *fp);
- int (*addr2line)(Obj *, unsigned long long , char *, int *);
- int (*strip)(Obj *obj);
void (*del)(Obj *obj);
+ int (*read)(Obj *obj, FILE *fp);
int (*write)(Obj *obj, FILE *fp);
+ int (*strip)(Obj *obj);
+ int (*addr2line)(Obj *, unsigned long long , char *, int *);
int (*setidx)(long nsyms, Objsymdef *def, FILE *fp);
int (*getidx)(long *nsyms, Objsymdef **def, FILE *fp);
};