1#include <stdio.h>
2#include <stdlib.h>
3
4static FILE *static_fun = NULL;
5
6FILE *
7force_static_fun (void)
8{
9  return static_fun;
10}
11