collect cp_* prototypes / extern-declarations in "cpextern.h"
This commit is contained in:
parent
fda6aafc9f
commit
1d62b41bfa
17
ChangeLog
17
ChangeLog
|
|
@ -1,3 +1,20 @@
|
|||
2010-10-09 Robert Larice
|
||||
* src/frontend/com_cdump.c ,
|
||||
* src/frontend/com_chdir.c ,
|
||||
* src/frontend/com_dump.c ,
|
||||
* src/frontend/com_echo.c ,
|
||||
* src/frontend/com_ghelp.c ,
|
||||
* src/frontend/com_rehash.c ,
|
||||
* src/frontend/com_setscale.c ,
|
||||
* src/frontend/com_shell.c ,
|
||||
* src/frontend/com_shift.c ,
|
||||
* src/frontend/com_state.c ,
|
||||
* src/frontend/parser/unixcom.c ,
|
||||
* src/frontend/streams.c ,
|
||||
* src/frontend/streams.h ,
|
||||
* src/frontend/variable.c :
|
||||
collect cp_* prototypes / extern-declarations in "cpextern.h"
|
||||
|
||||
2010-10-09 Robert Larice
|
||||
* src/ciderlib/input/dopset.c :
|
||||
additional #includes for prototype visibility
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
#include <wordlist.h>
|
||||
|
||||
#include "control.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
|
||||
#include "com_cdump.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
#include "com_chdir.h"
|
||||
#include "quote.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
|
||||
|
||||
void
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#include <inpdefs.h>
|
||||
#include "circuits.h"
|
||||
#include "com_dump.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
#include "fteext.h"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "com_echo.h"
|
||||
#include "quote.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
|
||||
void
|
||||
com_echo(wordlist *wlist)
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
#include <variable.h>
|
||||
|
||||
#include "variable.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
#include "cpextern.h"
|
||||
#include <hlpdefs.h>
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
#include <wordlist.h>
|
||||
#include "com_rehash.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
#include "control.h"
|
||||
#include "parser/unixcom.h"
|
||||
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
#include "com_setscale.h"
|
||||
#include "quote.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
#include "vectors.h"
|
||||
#include "plotting/plotting.h"
|
||||
#include "plotting/pvec.h"
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@
|
|||
#include <wordlist.h>
|
||||
|
||||
#include "com_shell.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
|
||||
/* Fork a shell. */
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
#include "com_shift.h"
|
||||
#include "variable.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
|
||||
|
||||
/* Shift a list variable, by default argv, one to the left (or more if
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
|
||||
#include "circuits.h"
|
||||
#include "com_state.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
#include "plotting/plotting.h"
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@ Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
|
|||
#include "ngspice.h"
|
||||
#include "cpdefs.h"
|
||||
#include "unixcom.h"
|
||||
#include "../frontend/streams.h"
|
||||
|
||||
#ifdef HAVE_VFORK_H
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
#include "variable.h"
|
||||
#include "terminal.h"
|
||||
#include "quote.h"
|
||||
#include "cpextern.h"
|
||||
#include "streams.h"
|
||||
|
||||
bool cp_debug = FALSE;
|
||||
|
|
|
|||
|
|
@ -9,19 +9,6 @@
|
|||
#include <bool.h>
|
||||
#include <wordlist.h>
|
||||
|
||||
extern bool cp_debug;
|
||||
extern char cp_amp;
|
||||
extern char cp_gt;
|
||||
extern char cp_lt;
|
||||
extern FILE *cp_in;
|
||||
extern FILE *cp_out;
|
||||
extern FILE *cp_err;
|
||||
extern FILE *cp_curin;
|
||||
extern FILE *cp_curout;
|
||||
extern FILE *cp_curerr;
|
||||
|
||||
void cp_ioreset(void);
|
||||
void fixdescriptors(void);
|
||||
wordlist * cp_redirect(wordlist *wl);
|
||||
|
||||
#endif /* STREAMS_H */
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ Author: 1985 Wayne A. Christopher, U. C. Berkeley CAD Group
|
|||
#include "circuits.h"
|
||||
#include "com_history.h"
|
||||
#include "quote.h"
|
||||
#include "streams.h"
|
||||
#include "cpextern.h"
|
||||
#include "variable.h"
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue