revert conf.c, conf.h

This commit is contained in:
h_vogt 2010-02-13 17:11:06 +00:00
parent 71c371485c
commit 19788f4f68
2 changed files with 7 additions and 7 deletions

View File

@ -11,12 +11,12 @@
#define BUG_ADDRESS "ngspice-bugs@lists.sourceforge.net"
#endif
char *Spice_Version = PACKAGE_VERSION;
char *Spice_Notice = "Please submit bug-reports to: " BUG_ADDRESS;
char Spice_Version[] = PACKAGE_VERSION;
char Spice_Notice[] = "Please submit bug-reports to: " BUG_ADDRESS;
#ifndef _MSC_VER
char *Spice_Build_Date = NGSPICEBUILDDATE;
char Spice_Build_Date[] = NGSPICEBUILDDATE;
#else
char *Spice_Build_Date = __DATE__" "__TIME__;
char Spice_Build_Date[] = __DATE__" "__TIME__;
#endif
char *Spice_Exec_Dir = NGSPICEBINDIR;

View File

@ -1,9 +1,9 @@
#ifndef __CONF_H
#define __CONF_H
extern char *Spice_Version;
extern char *Spice_Notice;
extern char *Spice_Build_Date;
extern char Spice_Version[];
extern char Spice_Notice[];
extern char Spice_Build_Date[];
extern char *Spice_Exec_Dir;
extern char *Spice_Lib_Dir;
extern char *Def_Editor;