
/*
 *    01-Feb-1990 - created
 */

/***********************************************************
 *
 *    Module:   local.h
 *
 *    Purpose:  include file for local additions to stdlib.h
 *
 **********************************************************/

#ifndef LOCAL_H
#define LOCAL_H
                            /* portability definitions */
#include "portdefs.h"
                            /* standard includes */
#include <stdio.h>
#include <ctype.h>
#include <math.h>
                            /* ANSI standard includes */
#include "stddef.h"
#include "limits.h"
#include "string.h"
#include "stdlib.h"
                            /* TRUE and FALSE booleans */
#ifndef TRUE
#define TRUE   1
#endif

#ifndef FALSE
#define FALSE  0
#endif

#ifndef MIN
#define MIN(x, y) (((x) < (y)) ? (x) : (y))
#endif
#endif   /* LOCAL_H */
/*
 *    end of file
 */
