mirror of
https://github.com/opnsense/src.git
synced 2026-04-24 15:48:48 -04:00
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 );
|
||
|
|
}
|