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

/*
 * Copyright (c) 1990, 1991, 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.
 */

/* Some macros to help with porting between C and C++: */

#ifndef PORT_H
#define PORT_H

/*
 * Function prototypes:
 *	extern func(arg1, arg2, ..., argn);
 *	extern func(PORT_NO_ARGS);
 */

#define ansi_c

#if defined(ansi_c)
#define PORT_NO_ARGS void
typedef void *Pointer;
#endif

#if defined(c_plus_plus)
#define PORT_NO_ARGS
typedef void *Pointer;
#endif

#endif /* PORT_H */
