1 /*************
2  * Header file for circuits.c
3  * 1999 E. Rouat
4  ************/
5 
6 #ifndef ngspice_CIRCUITS_H
7 #define ngspice_CIRCUITS_H
8 
9 
10 struct subcirc {
11     char *sc_name;              /* Whatever... */
12 };
13 
14 
15 #endif
16