Re: gcc warnings from a handful of headers

2001-09-08 Thread Harlan Stenn
Thanks, and since we're not using g++ here we don't see that problem. I did say it was a bad hack... Looking forward to 0.9.7. Harlan -- > > warning: function declaration isn't a prototype > > Many, if not most, of these are in the ASN.1 code, which is being > replaced for 0.9.7. Some

Re: gcc warnings from a handful of headers

2001-09-08 Thread Rich Salz
> warning: function declaration isn't a prototype Many, if not most, of these are in the ASN.1 code, which is being replaced for 0.9.7. Some of us here (at Zolera) started down the path of fixing that to-be-obsolete code, but it got to be too much. > have hackishly "fixed" by changing t

gcc warnings from a handful of headers

2001-09-08 Thread Harlan Stenn
There are a handful of header files in the openssl distribution that produce warnings from gcc like: warning: function declaration isn't a prototype These are usually from sections of code that look like (*foo)(), which I have hackishly "fixed" by changing them to (*foo)(void) . This is