summaryrefslogtreecommitdiffstats
path: root/call-out.c
blob: 42279a4a6d9ad2b6d6dc53b311efb9f238aae6c0 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>

extern void call_in(const char *);

void call_out(const char *string)
{
  printf("call_out(\"%s\");\n", string);
  call_in(string); 
}