diff options
author | Jeff Law <law@redhat.com> | 1994-09-01 16:53:19 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-09-01 16:53:19 +0000 |
commit | 54a17c91d0c6be0979b18762edb8827817d20f88 (patch) | |
tree | 1b0f8c32498ca71fe05457e15b581d7d278fd012 /gprof/gprof.h | |
parent | 0f45fbc133af8abd6834e7bc5926515ad9864efa (diff) | |
download | gdb-54a17c91d0c6be0979b18762edb8827817d20f88.zip gdb-54a17c91d0c6be0979b18762edb8827817d20f88.tar.gz gdb-54a17c91d0c6be0979b18762edb8827817d20f88.tar.bz2 |
* gprof.h (kfromlist, ktolist, flist, Flist, elist, Elist): Make
decls extern to keep native HP compiler quiet.
Diffstat (limited to 'gprof/gprof.h')
-rw-r--r-- | gprof/gprof.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gprof/gprof.h b/gprof/gprof.h index 0d8a549..0ac4c14 100644 --- a/gprof/gprof.h +++ b/gprof/gprof.h @@ -205,12 +205,12 @@ struct stringlist { struct stringlist *next; char *string; }; -struct stringlist *elist; -struct stringlist *Elist; -struct stringlist *flist; -struct stringlist *Flist; -struct stringlist *kfromlist; -struct stringlist *ktolist; +extern struct stringlist *elist; +extern struct stringlist *Elist; +extern struct stringlist *flist; +extern struct stringlist *Flist; +extern struct stringlist *kfromlist; +extern struct stringlist *ktolist; /* * function declarations |