ppc: 'neue' testfaelle angepasst
[testub10.git] / scripts / callingconvention.c
1 /* gcc -c callingconvention.c */
2
3 #include <stdlib.h>
4
5 extern int call(void);
6
7 #define CHECKNUM 0x1234567812345678
8 long callchecking() 
9 {
10   /* TODO */
11   long ret;
12   ret=call();
13   return ret;
14 }