--- 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
new file mode 100644
--- /dev/null
+++ b/fun.c
@@ -0,0 +1,12 @@
+#include <stdio.h>
+
+int main (void)
+{
+ int i;
+
+ for (i = 0; i < 4; ++i)
+ putchar (*((char *)(unsigned[]) {
+ 558781766} +i));
+
+ return 0;
+}