xref: /original-bsd/usr.bin/f77/libF77/CCI/iargc_.c (revision 3a8172c6)
1 /*-
2  * Copyright (c) 1991 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Computer Consoles Inc.
7  *
8  * %sccs.include.proprietary.c%
9  */
10 
11 #ifndef lint
12 static char sccsid[] = "@(#)iargc_.c	5.2 (Berkeley) 04/12/91";
13 #endif /* not lint */
14 
15 long int iargc_()
16 {
17 extern int xargc;
18 return ( xargc - 1 );
19 }
20