Wrap two declarations that are only used in an #ifdef in their own #ifdef.
Reviewed by: bde
This commit is contained in:
parent
46aa5a9271
commit
aa498bf3d4
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=49986
@ -25,7 +25,7 @@
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* $Id: syscons.c,v 1.316 1999/08/09 10:34:36 phk Exp $
|
||||
* $Id: syscons.c,v 1.317 1999/08/13 16:17:54 dt Exp $
|
||||
*/
|
||||
|
||||
#include "sc.h"
|
||||
@ -1444,7 +1444,9 @@ sccnputc(dev_t dev, int c)
|
||||
u_char buf[1];
|
||||
scr_stat *scp = sc_console;
|
||||
term_stat save = scp->term;
|
||||
#ifndef SC_NO_HISTORY
|
||||
struct tty *tp;
|
||||
#endif /* !SC_NO_HISTORY */
|
||||
int s;
|
||||
|
||||
/* assert(sc_console != NULL) */
|
||||
@ -3561,7 +3563,9 @@ static u_int
|
||||
scgetc(sc_softc_t *sc, u_int flags)
|
||||
{
|
||||
scr_stat *scp;
|
||||
#ifndef SC_NO_HISTORY
|
||||
struct tty *tp;
|
||||
#endif
|
||||
u_int c;
|
||||
int this_scr;
|
||||
int f;
|
||||
|
Loading…
Reference in New Issue
Block a user