1 
2 #include <stdio.h>
3 #include <unistd.h>
4 /* The "original" function */
5 
6 void actual ( void )
7 {
8   printf("in actual-so\n");
9 }
10 
11