/* %Z%%M% %I% %E% */ /* * Copyright (c) 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 declares the need typedefs: */ #ifndef NEED_TYPES_H #define NEED_TYPES_H typedef struct Need_entry_struct *Need_entry; typedef struct Need_table_struct *Need_table; typedef union Need_value_union Need_value; typedef enum { Need_entry_routine, Need_entry_object } Need_entry_type; #endif /* NEED_TYPES_H */