diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2013-09-19 16:12:02 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2013-09-19 16:12:02 +0000 |
commit | 9dcae335db31b109f2eeb4b6b63e0cab3328de65 (patch) | |
tree | b6bc771672ba0ddcf2316468407b77b264968c11 /usr.bin/bc/bc.y | |
parent | 6f3beff0ed61c4dd99f705958a5ae95ea659e832 (diff) |
separate termios.h out from scan.l, both have an ECHO define. Noted by
Joris Giovannangeli.
Diffstat (limited to 'usr.bin/bc/bc.y')
-rw-r--r-- | usr.bin/bc/bc.y | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/bc/bc.y b/usr.bin/bc/bc.y index aabcbff4228..fe850368ae7 100644 --- a/usr.bin/bc/bc.y +++ b/usr.bin/bc/bc.y @@ -1,5 +1,5 @@ %{ -/* $OpenBSD: bc.y,v 1.41 2012/03/08 08:20:08 otto Exp $ */ +/* $OpenBSD: bc.y,v 1.42 2013/09/19 16:12:01 otto Exp $ */ /* * Copyright (c) 2003, Otto Moerbeek <otto@drijf.net> @@ -41,9 +41,7 @@ #include <search.h> #include <signal.h> #include <stdarg.h> -#include <stdbool.h> #include <string.h> -#include <termios.h> #include <unistd.h> #include "extern.h" |