kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

archive_stubs.c (573B)


      1 #include "obj/format.h"
      2 
      3 int obj_format_classify_obj_input_disabled(Compiler* c, ObjBuilder* ob,
      4                                            Sym* soname_out) {
      5   (void)c;
      6   (void)ob;
      7   if (soname_out) *soname_out = 0;
      8   return 0;
      9 }
     10 
     11 Sym obj_format_archive_hint_disabled(Compiler* c, const char* archive_name) {
     12   (void)c;
     13   (void)archive_name;
     14   return 0;
     15 }
     16 
     17 ObjFormatArchiveAction obj_format_archive_member_disabled(
     18     Compiler* c, const ObjFormatArchiveMember* mem, ObjBuilder** out) {
     19   (void)c;
     20   (void)mem;
     21   if (out) *out = NULL;
     22   return OBJ_FORMAT_ARCHIVE_KEEP;
     23 }