1*47942Sbostic /*- 2*47942Sbostic * Copyright (c) 1991 The Regents of the University of California. 3*47942Sbostic * All rights reserved. 4*47942Sbostic * 5*47942Sbostic * This code is derived from software contributed to Berkeley by 6*47942Sbostic * Computer Consoles Inc. 7*47942Sbostic * 8*47942Sbostic * %sccs.include.proprietary.c% 929957Smckusick */ 1029957Smckusick 11*47942Sbostic #ifndef lint 12*47942Sbostic static char sccsid[] = "@(#)iargc_.c 5.2 (Berkeley) 04/12/91"; 13*47942Sbostic #endif /* not lint */ 14*47942Sbostic iargc_()1529957Smckusicklong int iargc_() 1629957Smckusick { 1729957Smckusick extern int xargc; 1829957Smckusick return ( xargc - 1 ); 1929957Smckusick } 20