/* %Z%%M% %I% %E% */

/*
 * Copyright (c) 1990, 1991, 1992, 1995 by Wayne C. Gramlich.
 * All rights reserved.
 *
 * Permission to use, copy, modify, distribute, and sell this software
 * for any purpose is hereby granted without fee provided that the above
 * copyright notice and this permission are retained.  The author makes
 * no representations about the suitability of this software for any purpose.
 * It is provided "as is" without express or implied warranty.
 */

/* This file contains typedefs for routine objects: */

#ifndef ROUTINE_TYPES_H
#define ROUTINE_TYPES_H

typedef struct Routine_struct		*Routine;
typedef struct Routine_entry_struct	*Routine_entry;
typedef struct Routine_ref_struct	*Routine_ref;
typedef struct Routine_table_struct	*Routine_table;
typedef struct Routine_type_struct	*Routine_type;

#endif /* ROUTINE_TYPES_H */
