1*381Smuffin /* 2*381Smuffin * Copyright 1990 Sun Microsystems, Inc. All rights reserved. 3*381Smuffin * Use is subject to license terms. 4*381Smuffin */ 5*381Smuffin 60Sstevel@tonic-gate /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ 70Sstevel@tonic-gate /* All Rights Reserved */ 80Sstevel@tonic-gate 90Sstevel@tonic-gate /* 100Sstevel@tonic-gate * Copyright (c) 1980 Regents of the University of California. 110Sstevel@tonic-gate * All rights reserved. The Berkeley software License Agreement 120Sstevel@tonic-gate * specifies the terms and conditions for redistribution. 130Sstevel@tonic-gate */ 140Sstevel@tonic-gate 15*381Smuffin #pragma ident "%Z%%M% %I% %E% SMI" 160Sstevel@tonic-gate 170Sstevel@tonic-gate /* t2.c: subroutine sequencing for one table */ 180Sstevel@tonic-gate # include "t..c" 19*381Smuffin 20*381Smuffin void tableput(void)21*381Smuffintableput(void) 220Sstevel@tonic-gate { 230Sstevel@tonic-gate saveline(); 240Sstevel@tonic-gate savefill(); 250Sstevel@tonic-gate ifdivert(); 260Sstevel@tonic-gate cleanfc(); 270Sstevel@tonic-gate getcomm(); 280Sstevel@tonic-gate getspec(); 290Sstevel@tonic-gate gettbl(); 300Sstevel@tonic-gate getstop(); 310Sstevel@tonic-gate checkuse(); 320Sstevel@tonic-gate choochar(); 330Sstevel@tonic-gate maktab(); 340Sstevel@tonic-gate runout(); 350Sstevel@tonic-gate release(); 360Sstevel@tonic-gate rstofill(); 370Sstevel@tonic-gate endoff(); 380Sstevel@tonic-gate restline(); 390Sstevel@tonic-gate } 40