~clacke/stackoverflowq-2623437/patchfun-rollstack

« back to all changes in this revision

Viewing changes to patchfun-cc-receiver.cc

  • Committer: Claes Wallin
  • Date: 2010-05-09 13:20:48 UTC
  • Revision ID: clacke@sefagl485.raby.clacke.se-20100509132048-rb45tye633bi8dgm
init

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include <stdio.h>
 
2
 
 
3
// A function that I want to be called, receiving the original arguments
 
4
void receiver(int a,int b,int c,int d)
 
5
{
 
6
 printf("Arguments %d %d %d %d\n",a,b,c,d);
 
7
}
 
8