Also so hab ich das gemacht und ich hab gesehen das F77 doch drin ist. Und du hast tatsächlich recht er hat es nur auf i abgesehen ein b wird normal dargestellt.
tss, sachen gibts die gibt es garnicht.
gruß speedy
*@debian:~$ cd fzuc/
*@debian:~/fzuc$ ls
a.out hello hello.c hello.f hi.c ii.txt p1.c p1c.c p1.f prog x.c x.f
*@debian:~/fzuc$ gcc -g -o x x.c -lf2c -lm
*@debian:~/fzuc$ gdb x
GNU gdb 6.3-debian
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB. Type "show warranty" for details.
This GDB was configured as "i386-linux"...Using host libthread_db library "/lib/libthread_db.so.1".
(gdb) b MAIN__
Breakpoint 1 at 0x804979a: file x.c, line 29.
(gdb) r
Starting program: /home/biedi/fzuc/x
Breakpoint 1, MAIN__ () at x.c:29
29 for (i__ = 1; i__ <= 10; ++i__) {
(gdb) l
24 /* Fortran I/O blocks */
25 static cilist io___2 = { 0, 6, 0, 0, 0 };
26
27
28 /*< DO 10, I=1,10 >*/
29 for (i__ = 1; i__ <= 10; ++i__) {
30 /*< PRINT *,'HELLO' >*/
31 s_wsle(&io___2);
32 do_lio(&c__9, &c__1, "HELLO", (ftnlen)5);
33 e_wsle();
(gdb)