shithub: scc

Download patch

ref: fe6c85f724bdef3c203b6ebc83c4fe0edfb3094a
parent: 1775fd4145bc37c5cb629a3aa5d4eaa53329deeb
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Fri Aug 23 14:52:48 EDT 2019

[libmach] Cosmetic change in mach.h

--- a/include/scc/scc/mach.h
+++ b/include/scc/scc/mach.h
@@ -47,11 +47,11 @@
 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);
 };