├── .gitignore ├── COPYING ├── Makefile ├── README └── leakdice.c /.gitignore: -------------------------------------------------------------------------------- 1 | leakdice 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tialaramex/leakdice/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | 2 | all: leakdice 3 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tialaramex/leakdice/HEAD/README -------------------------------------------------------------------------------- /leakdice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tialaramex/leakdice/HEAD/leakdice.c --------------------------------------------------------------------------------