codea: happy addressguessing (thanks gdb)
[testub10.git] / codea / lewurm_11.call
index 8a6475f76c1df968b89217fbb0b099e88247a695..08c981d46924916a9c37c97a42b694827fb3c42d 100644 (file)
@@ -1,3 +1,6 @@
-long w(long);
-static long s[] = {5,1,1337};
-RET(w(0xcafebabe) == 1337);
+long wfoo(long);
+static long s[3];
+s[0] = 5;
+s[1] = 1;
+s[2] = 1337;
+RET(wfoo(0xcafebabe) == 1337);