iargc_.c 196 B

1234567891011121314151617
  1. #include "f2c.h"
  2. #ifdef __cplusplus
  3. extern "C" {
  4. #endif
  5. #ifdef KR_headers
  6. ftnint iargc_()
  7. #else
  8. ftnint iargc_(void)
  9. #endif
  10. {
  11. extern int xargc;
  12. return ( xargc - 1 );
  13. }
  14. #ifdef __cplusplus
  15. }
  16. #endif