commit 29f83a014995b8b4c2cde0b50dc6e2caea0e8773 parent 02dd1ce68e196c343ccae71380632300b599b2e2 Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Sun, 10 Feb 2019 12:11:14 +0000 [libmach] Add skeleton for foridx() Diffstat:
| A | src/libmach/foridx.c | | | 11 | +++++++++++ |
1 file changed, 11 insertions(+), 0 deletions(-)
diff --git a/src/libmach/foridx.c b/src/libmach/foridx.c @@ -0,0 +1,11 @@ +#include <stdio.h> +#include <scc/mach.h> + +#include "libmach.h" + +int +foridx(FILE *fp, int (*fn)(Objsymdef *, void *), void *data) +{ + /* TODO */ + return 0; +}