C++ compatibility

This commit is contained in:
Christophe Alexandre 2003-02-14 12:43:47 +00:00
parent 9ba6f6a7c1
commit a7bb8496fe
1 changed files with 8 additions and 0 deletions

View File

@ -32,6 +32,10 @@
#ifndef MSLH
#define MSLH
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
extern int msl_line; /* current line number */
extern int msl_figloaded; /* TRUE if inside a SUBCKT */
extern char *msl_figname; /* name of main SUBCKT */
@ -54,5 +58,9 @@ void mslRmvCompletion __P(( )); /* remove this function */
extern int SPI_LANG;
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif