]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - libf2c/libF77/getarg_.c
Imported gcc-4.4.3
[msp430-gcc.git] / libf2c / libF77 / getarg_.c
diff --git a/libf2c/libF77/getarg_.c b/libf2c/libF77/getarg_.c
deleted file mode 100644 (file)
index 5cf3ffb..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#include "f2c.h"
-
-/*
- * subroutine getarg(k, c)
- * returns the kth unix command argument in fortran character
- * variable argument c
-*/
-
-#ifdef KR_headers
-VOID G77_getarg_0 (n, s, ls) ftnint *n; register char *s; ftnlen ls;
-#else
-void G77_getarg_0 (ftnint *n, register char *s, ftnlen ls)
-#endif
-{
-extern int f__xargc;
-extern char **f__xargv;
-register char *t;
-register int i;
-
-if(*n>=0 && *n<f__xargc)
-       t = f__xargv[*n];
-else
-       t = "";
-for(i = 0; i<ls && *t!='\0' ; ++i)
-       *s++ = *t++;
-for( ; i<ls ; ++i)
-       *s++ = ' ';
-}