summaryrefslogtreecommitdiff
path: root/silly-malloc/README
diff options
context:
space:
mode:
Diffstat (limited to 'silly-malloc/README')
-rw-r--r--silly-malloc/README10
1 files changed, 10 insertions, 0 deletions
diff --git a/silly-malloc/README b/silly-malloc/README
new file mode 100644
index 0000000..0d26192
--- /dev/null
+++ b/silly-malloc/README
@@ -0,0 +1,10 @@
+# Silly-Malloc
+
+Randomly allocate less memory than wanted
+
+## Usage
+```bash
+gcc -fPIC -shared teehee.c -o teehee.so
+gcc meow.c -o meow
+LD_PRELOAD=./teehee.so ./meow
+```