├── .gitignore ├── COPYRIGHT ├── Makefile ├── README.md └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | markandsweep 3 | -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munificent/mark-sweep/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munificent/mark-sweep/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munificent/mark-sweep/HEAD/README.md -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/munificent/mark-sweep/HEAD/main.c --------------------------------------------------------------------------------