File tree 4 files changed +11
-7
lines changed
lib-src/libnyquist/nyquist
4 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
#define NOCHAR -2
2
2
3
- int IOinputfd ;
4
- int IOnochar ;
3
+ extern int IOinputfd ;
4
+ extern int IOnochar ;
5
5
6
6
int IOsetup (int inputfd );
7
7
int IOcleanup (void );
Original file line number Diff line number Diff line change @@ -153,6 +153,10 @@ extern int debug;
153
153
#include "xlisp.h"
154
154
#endif
155
155
156
+ int IOinputfd ; /* input file descriptor (usually 0) */
157
+
158
+ int IOnochar ; /* Value to be returned by IOgetchar()
159
+ where there is no input to be had */
156
160
157
161
/****************************************************************************
158
162
*
Original file line number Diff line number Diff line change @@ -185,6 +185,8 @@ LVAL xlc_seq_get(void)
185
185
}
186
186
187
187
188
+ #include "seqmwrite.h"
189
+
188
190
/* xlc_seq_write_smf -- interface to C routine seq_xlwrite_smf */
189
191
/**/
190
192
LVAL xlc_seq_write_smf (void )
@@ -213,8 +215,6 @@ LVAL xlc_seq_read_smf(void)
213
215
}
214
216
215
217
216
- #include "seqmwrite.h"
217
-
218
218
#include "seqread.h"
219
219
220
220
/* xlc_seq_read -- interface to C routine seq_read */
Original file line number Diff line number Diff line change 16
16
#include <sgtty.h>
17
17
#include "cext.h"
18
18
19
- int IOinputfd ; /* input file descriptor (usually 0) */
19
+ extern int IOinputfd ; /* input file descriptor (usually 0) */
20
20
21
- int IOnochar ; /* Value to be returned by IOgetchar()
22
- where there is no input to be had */
21
+ extern int IOnochar ; /* Value to be returned by IOgetchar()
22
+ where there is no input to be had */
23
23
24
24
static struct sgttyb IOoldmodes , IOcurrentmodes ;
25
25
/* Initial and current tty modes */
You can’t perform that action at this time.
0 commit comments