1/* This file provides auxiliary functions for c_ptr_tests_8.  */
2
3#include <stdio.h>
4#include <stdlib.h>
5
6extern void abort (void);
7
8void *create (void)
9{
10  int *a;
11  a = malloc (sizeof (a));
12  *a = 444;
13  return a;
14
15}
16
17void show (int *a)
18{
19  if (*a == 444)
20    printf ("SUCCESS (%d)\n", *a);
21  else
22  {
23    printf ("FAILED: Expected 444, received %d\n", *a);
24    abort ();
25  }
26}
27