# HG changeset patch # User Markus Brökers # Date 1281348775 -7200 # Node ID d8a0984b72fcdf38ca9d5a7464a370d0f84cd380 # Parent d82f65e902d092cb8b55063ff7c3e1ecd91f9c9a From a 'C-Professional' :) Take a look at the source and pray diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -75,6 +75,7 @@ TARGET += pipe TARGET += compliteral TARGET += getbits +TARGET += fun .SUFFIXES: .c .cc .asm @@ -342,6 +343,9 @@ @echo Linking $<... @$(CC) -Wall -O2 -g -ggdb $(LDFLAGS) $< -o $@ +fun: fun.o + @echo Linking $<... + @$(CC) -Wall -O2 -g -ggdb $(LDFLAGS) $< -o $@ .PHONY: beauty clean uninstall diff --git a/fun.c b/fun.c new file mode 100644 --- /dev/null +++ b/fun.c @@ -0,0 +1,12 @@ +#include + +int main (void) +{ + int i; + + for (i = 0; i < 4; ++i) + putchar (*((char *)(unsigned[]) { + 558781766} +i)); + + return 0; +}