diff options
Diffstat (limited to 'silly-malloc/meow.c')
-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); -} |