matter.c

Cross-platform minimalist libc
git clone git://git.finwo.net/lib/matter.c
Log | Files | Refs | README | LICENSE

page_size.h (163B)


      1 #ifndef _MATTER_PAGE_SIZE_H_
      2 #define _MATTER_PAGE_SIZE_H_
      3 
      4 #define PAGE_SIZE (4*1024)
      5 
      6 #ifdef __wasm__
      7 #undef PAGE_SIZE
      8 #define PAGE_SIZE (64*1024)
      9 #endif
     10 
     11 #endif