Home
       mach.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       mach.c (149B)
       ---
            1 #include <stdio.h>
            2 
            3 #include <scc/mach.h>
            4 
            5 #include "libmach.h"
            6 
            7 Objops *objops[] = {
            8         [COFF32] = &coff32,
            9         [ELF64] = &elf64,
           10         [NFORMATS] = NULL,
           11 };