summaryrefslogtreecommitdiff
path: root/Build/source/utils/pmx/pmx-2.6.18/libf2c/iargc_.c
blob: 2f29da0eaa6c13a9a0434b6f0df645ff0c82a156 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "f2c.h"
#ifdef __cplusplus
extern "C" {
#endif

#ifdef KR_headers
ftnint iargc_()
#else
ftnint iargc_(void)
#endif
{
extern int xargc;
return ( xargc - 1 );
}
#ifdef __cplusplus
}
#endif