C++ compliant ...

please do not warn me if I'm wrong
This commit is contained in:
Christophe Alexandre 2002-10-01 19:07:18 +00:00
parent 09b432bbf3
commit 97ee5be7f5
2 changed files with 16 additions and 0 deletions

View File

@ -37,6 +37,10 @@
#ifndef ABE_BEHDEF
#define ABE_BEHDEF
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* ###------------------------------------------------------### */
/* defines */
/* ###------------------------------------------------------### */
@ -318,4 +322,8 @@ extern int beh_error ();
extern void beh_message ();
extern void beh_toolbug ();
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif

View File

@ -37,6 +37,10 @@
#ifndef ABV_BVLDEF
#define ABV_BVLDEF
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define ABV_TRACE_MASK 0x00000001 /* print messages when parsing */
#define ABV_KEEP_AUX_MASK 0x00000002 /* keep internal signals */
#define ABV_SYNTH_MASK 0x00000004 /* special mode for synthesis */
@ -48,4 +52,8 @@
extern struct befig *vhdlloadbefig ();
extern void vhdlsavebefig ();
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif