scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

coff32getidx.c (242B)


      1 #include <stdio.h>
      2 
      3 #include <scc/mach.h>
      4 #include <scc/coff32.h>
      5 
      6 #include "../libmach.h"
      7 #include "fun.h"
      8 
      9 int
     10 coff32getidx(long *nsyms, char ***namep, long **offsp, FILE *fp)
     11 {
     12 	return coff32xgetidx(BIG_ENDIAN, nsyms, namep, offsp, fp);
     13 }