Name: Anonymous 2011-11-26 21:11
this_is_fasta.c :
#include <stdio.h>
#include <stdlib.h>
void _start() {
puts("I pity the fools that lag program start and ending by calling and returning from main");
exit(0);
}
noTIMEfor@LOVE$ gcc -c this_is_fasta.c
noTIMEfor@LOVE$ ld -I/lib/ld-linux.so.2 -lc this_is_fasta.o -o this_is_fasta
noTIMEfor@LOVE$ this_is_fasta
I pity the fools that lag program start and ending by calling and returning from main
noTIMEfor@LOVE$