diff options
author | rose <rose@pinkro.se> | 2025-08-13 01:28:16 +0200 |
---|---|---|
committer | rose <rose@pinkro.se> | 2025-08-13 01:28:16 +0200 |
commit | b7be2c5498fd1844daadd9e78aa031c60be9cb44 (patch) | |
tree | 7ca176b6892b5ff23c5439025eaf552400007b8f /silly-malloc/meow.c | |
parent | e9b64be5230f0b498d8d78a8e67158a843594f83 (diff) | |
download | random-main.tar.gz random-main.tar.bz2 |
Diffstat (limited to '')
-rw-r--r-- | silly-malloc/meow.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/silly-malloc/meow.c b/silly-malloc/meow.c deleted file mode 100644 index 88c7e88..0000000 --- a/silly-malloc/meow.c +++ /dev/null @@ -1,10 +0,0 @@ -#define _GNU_SOURCE -#include <stdlib.h> -#include <stdio.h> - -int main () { - char *merow = malloc (9); - sprintf (merow, "meowmeow"); - printf ("%s\n", merow); - free (merow); -} |