fork(3) download
  1. #include <malloc.h>
  2.  
  3. int main() {
  4. void *p = malloc(110);
  5. printf("%d\n", malloc_usable_size(p));
  6. }
Success #stdin #stdout 0s 3468KB
stdin
Standard input is empty
stdout
116