ref: 3aa27c3da9cf49c6f8082f09a295b7cf241c9a65
dir: /src/libmach/arindex.c/
#include <stdio.h> #include <scc/mach.h> #include "libmach.h" extern indexfun_t indexv[]; long arindex(int type, long nsyms, Symdef *head, FILE *fp) { int fmt; indexfun_t fn; fmt = FORMAT(type); if (fmt >= NFORMATS) return -1; fn = indexv[fmt]; return (*fn)(type, nsyms, head, fp); }