├── .gitignore ├── Makefile ├── README.md └── malloc-stats.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.so 3 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behdad/malloc-stats/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behdad/malloc-stats/HEAD/README.md -------------------------------------------------------------------------------- /malloc-stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/behdad/malloc-stats/HEAD/malloc-stats.c --------------------------------------------------------------------------------