5 lines
97 B
Bash
Executable File
5 lines
97 B
Bash
Executable File
#!/bin/sh
|
|
|
|
g++ -m32 -c -o free.o free.cpp -ffreestanding -nostdlib
|
|
ld -m elf_i386 -o free free.o
|