#include "header1.h"

void bar(int *ptr) {
  if (!ptr)
    *ptr = 42;
}

void foo(int *ptr) {
  bar(ptr);
}

