diff options
author | axtloss <axtlos@getcryst.al> | 2024-07-03 18:38:44 +0200 |
---|---|---|
committer | axtloss <axtlos@getcryst.al> | 2024-07-03 18:38:44 +0200 |
commit | 1abb10008fa9d321bbdeda8176dfc83c40e33c71 (patch) | |
tree | 2e3c2589a1ec6d30aac8abdb23f05fe54db7a215 /silly-malloc/README | |
download | random-1abb10008fa9d321bbdeda8176dfc83c40e33c71.tar.gz random-1abb10008fa9d321bbdeda8176dfc83c40e33c71.tar.bz2 |
silly-malloc: Add project
Diffstat (limited to 'silly-malloc/README')
-rw-r--r-- | silly-malloc/README | 10 |
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 +``` |