What is Nostr?
Phineas 'fossoid' Holstrom /
npub1vhx…sekz
2023-11-06 23:03:33
in reply to nevent1q…pqdu

Phineas 'fossoid' Holstrom on Nostr: buy robux today :ROBUX: UsernameSwift ☭ :verifiedaroace: yeah ok I think it worked ...

buy robux today :ROBUX: (npub1wg0…t0yf) UsernameSwift ☭ :verifiedaroace: (npub1zt2…ccgj) yeah ok I think it worked fuck me

Makefile:


CC=gcc
CFLAGS = -ggdb
CPPFLAGS = -c -std=gnu90 -Wall -pedantic -Wextra
NES = -z noexecstack



mycode.o: mycode.c
$(CC) $(CFLAGS) $(CPPFLAGS) $(NES) -o mycode.o -c mycode.c

mycode: mycode.o
$(CC) $(NES) -o mycode mycode.o


Code:

#include <stdlib.h>

int main(){
int *i;

i = malloc(sizeof(int));

*i = 12;
free(i);
return 0;

}


Compilation Output:

gcc -ggdb -c -std=gnu90 -Wall -pedantic -Wextra -z noexecstack -o mycode.o -c mycode.c
gcc -z noexecstack -o mycode mycode.o
Author Public Key
npub1vhxacxa7dvs4h5dnjke8kck6mu0m30wrsr90n57cwl77kar9fwjs4lsekz