C++ compatibility
This commit is contained in:
parent
9ba6f6a7c1
commit
a7bb8496fe
|
@ -32,6 +32,10 @@
|
||||||
#ifndef MSLH
|
#ifndef MSLH
|
||||||
#define MSLH
|
#define MSLH
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
extern "C" {
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
extern int msl_line; /* current line number */
|
extern int msl_line; /* current line number */
|
||||||
extern int msl_figloaded; /* TRUE if inside a SUBCKT */
|
extern int msl_figloaded; /* TRUE if inside a SUBCKT */
|
||||||
extern char *msl_figname; /* name of main SUBCKT */
|
extern char *msl_figname; /* name of main SUBCKT */
|
||||||
|
@ -54,5 +58,9 @@ void mslRmvCompletion __P(( )); /* remove this function */
|
||||||
|
|
||||||
extern int SPI_LANG;
|
extern int SPI_LANG;
|
||||||
|
|
||||||
|
#ifdef __cplusplus
|
||||||
|
}
|
||||||
|
#endif /* __cplusplus */
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue