You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
389 B
22 lines
389 B
#ifndef __DECLARE_H__
|
|
#define __DECLARE_H__
|
|
|
|
#if !defined ANSI_PROTOTYPES
|
|
# if defined MSDOS || defined __BORLANDC__ || defined __HIGHC__ || defined SCO_UNIX || defined AViiON
|
|
# define ANSI_PROTOTYPES 1
|
|
# endif
|
|
#endif
|
|
|
|
#if ANSI_PROTOTYPES!=0
|
|
# define __OF(args) args
|
|
#else
|
|
# define __OF(args) ()
|
|
#endif
|
|
|
|
#if defined __HIGHC__
|
|
# define VARARG ...
|
|
#else
|
|
# define VARARG
|
|
#endif
|
|
|
|
#endif
|