12 lines
129 B
C
12 lines
129 B
C
|
#include "f2c.h"
|
||
|
|
||
|
#ifdef KR_headers
|
||
|
ftnint iargc_()
|
||
|
#else
|
||
|
ftnint iargc_(void)
|
||
|
#endif
|
||
|
{
|
||
|
extern int xargc;
|
||
|
return ( xargc - 1 );
|
||
|
}
|