kit

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

os.c (230B)


      1 #include <kit/os.h>
      2 
      3 extern const KitOsHostedOps kit_os_android_hosted_ops;
      4 
      5 const KitOsImpl kit_os_android_impl = {
      6     .kind = KIT_OS_ANDROID,
      7     .name = "android",
      8     .hosted = &kit_os_android_hosted_ops,
      9     .emu = NULL,
     10 };