repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* config/xtensa/xtensa.c (xtensa_emit_loop_end): Only use "nop.n"
[official-gcc.git]
/
libf2c
/
libF77
/
setarg.c
blob
49515746f4825ca7cff85083c291cf66e69411d1
1
/* Set up the global argc/argv info for use by getarg_, iargc_, and
2
g77's inlined intrinsic equivalents. */
3
4
#include <stdlib.h>
5
6
int
f__xargc
;
7
char
**
f__xargv
;
8
9
void
10
f_setarg
(
int
argc
,
char
**
argv
)
11
{
12
f__xargc
=
argc
;
13
f__xargv
=
argv
;
14
}