/*
  Include declarations
*/
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#if __STDC__ || defined(sgi) || defined(AIXV3)
#include <stdlib.h>
#else
#ifndef vms
#include <malloc.h>
#include <memory.h>

extern long
  strtol(),
  time();
#endif
#endif
#undef index

/*
  Define declarations for the Display program.
*/
#if __STDC__ || defined(sgi) || defined(AIXV3)
#define _Declare(formal_parameters) formal_parameters
ersion:q:#else
#define const 
#define _Declare(formal_parameters) ()
#endif
#define False  0
#define Max(x,y)  (((x) > (y)) ? (x) : (y))
#define Min(x,y)  (((x) < (y)) ? (x) : (y))
#define MinInfoSize (1 << 18)
#define True  1
#define Warning(message,qualifier)  \
{  \
  (void) fprintf(stderr,"%s: %s",application_name,message);  \
  if (qualifier != (char *) NULL)  \
    (void) fprintf(stderr," (%s)",qualifier);  \
  (void) fprintf(stderr,".\n");  \
}
#ifdef vms
#define pclose(file)  exit(1)
#define popen(command,mode)  exit(1)
#define unlink(file)  remove(file)
#endif

/*
  Variable declarations.
*/
char
  *application_name;

#ifndef lint
static char 
  Version[]="@(#)ImageMagick 92/01/01 cristy@dupont.com";
#endif
