scc

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

coff32getidx.c (221B)


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