Blob Blame History Raw
#include <stdio.h>
#include <stdlib.h>

void
fx (void)
{
  puts ("At exit fx");
}

void
foo (void)
{
  atexit (fx);
}