mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-16 07:11:05 +01: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 );
|
||
|
}
|