collect smktemp() in "mktemp.h"
This commit is contained in:
parent
dd7ae38ade
commit
8209c0aef3
13
ChangeLog
13
ChangeLog
|
|
@ -1,5 +1,16 @@
|
|||
2010-10-15 Robert Larice
|
||||
* src/frontend/aspice.c ,
|
||||
* src/frontend/com_gnuplot.c ,
|
||||
* src/frontend/com_hardcopy.c ,
|
||||
* src/frontend/com_xgraph.c ,
|
||||
* src/frontend/inp.c ,
|
||||
* src/frontend/nutinp.c ,
|
||||
* src/include/ngspice.h ,
|
||||
* src/ngsconvert.c :
|
||||
collect smktemp() in "mktemp.h"
|
||||
|
||||
2010-10-13 Dietmar Warning
|
||||
* src/frontend/com_option.c: better formatting the output and
|
||||
* src/frontend/com_option.c: better formatting the output and
|
||||
add some useful parameters if command 'option' is given
|
||||
* src/include/cktdefs.h,
|
||||
* src/spicelib/analysis/cktdojob.c, cktntask.c,
|
||||
|
|
|
|||
|
|
@ -36,6 +36,8 @@ $Id$
|
|||
#include "fteinp.h"
|
||||
#include "dvec.h"
|
||||
|
||||
#include "../misc/mktemp.h"
|
||||
|
||||
/*
|
||||
This is required for the GCC pre-processor and might be needed for others
|
||||
Added to resolve ngspice bug 1293746
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
#include <wordlist.h>
|
||||
|
||||
#include "plotting/plotit.h"
|
||||
#include "../misc/mktemp.h"
|
||||
|
||||
#include "com_gnuplot.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -13,6 +13,7 @@
|
|||
#include "plotting/plotit.h"
|
||||
#include "plotting/graphdb.h"
|
||||
#include "plotting/graf.h"
|
||||
#include "../misc/mktemp.h"
|
||||
|
||||
#include "arg.h"
|
||||
#include "display.h"
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@
|
|||
#include <wordlist.h>
|
||||
|
||||
#include "plotting/plotit.h"
|
||||
#include "../misc/mktemp.h"
|
||||
|
||||
#include "com_xgraph.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -29,6 +29,7 @@ $Id$
|
|||
#include "variable.h"
|
||||
#include "breakp2.h"
|
||||
#include "../misc/util.h" /* dirname() */
|
||||
#include "../misc/mktemp.h"
|
||||
#include "error.h" /* controlled_exit() */
|
||||
|
||||
#ifdef XSPICE
|
||||
|
|
|
|||
|
|
@ -15,6 +15,7 @@ $Id$
|
|||
#include "fteinp.h"
|
||||
#include "nutinp.h"
|
||||
#include "variable.h"
|
||||
#include "../misc/mktemp.h"
|
||||
|
||||
/* The routine to source a spice input deck. We read the deck in, take out
|
||||
* the front-end commands, and create a CKT structure. Also we filter out
|
||||
|
|
|
|||
|
|
@ -217,8 +217,6 @@ extern char *tildexpand(char *str);
|
|||
extern char *canonicalize_pathname(char *path);
|
||||
extern char *absolute_pathname(char *str, char *dot_path);
|
||||
|
||||
extern char *smktemp(char *id);
|
||||
|
||||
extern char *copy(const char *str);
|
||||
extern int prefix(char *p, char *str);
|
||||
extern int substring(char *sub, char *str);
|
||||
|
|
|
|||
|
|
@ -16,6 +16,7 @@ Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
|
|||
#include <sim.h>
|
||||
#include "suffix.h"
|
||||
#include "frontend/display.h"
|
||||
#include "../misc/mktemp.h"
|
||||
|
||||
FILE *cp_in = NULL;
|
||||
FILE *cp_out = NULL;
|
||||
|
|
|
|||
Loading…
Reference in New Issue