]> granicus.if.org Git - strace/blobdiff - term.c
Remove code which supports systems with long long off_t.
[strace] / term.c
diff --git a/term.c b/term.c
index 2e86f2e7ed7f07592111a0fdbba4ad514d009b36..7b7de7405307019f06246c7d35b24582a53d3426 100644 (file)
--- a/term.c
+++ b/term.c
  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  * (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$
  */
 
 #include "defs.h"
-
 /*
  * The C library's definition of struct termios might differ from
  * the kernel one, and we need to use the kernel layout.
  */
 #include <linux/termios.h>
-
 #ifdef HAVE_SYS_FILIO_H
-#include <sys/filio.h>
+# include <sys/filio.h>
 #endif
 
 static const struct xlat tcxonc_options[] = {
@@ -168,7 +164,6 @@ static const struct xlat modem_flags[] = {
        { 0,            NULL,           },
 };
 
-
 int term_ioctl(struct tcb *tcp, long code, long arg)
 {
        struct termios tios;