472,127 Members | 1,578 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,127 software developers and data experts.

"extern struct foobar" linux compilation warning

All,

I am receiving the following compilation error on LINUX
(but not Solaris, HPUX, WIN32, etc):

compiling osr.c
LBFO.h(369): warning #64: declaration does not declare anything
extern struct foobar;
^

This is apparently a forward reference to a data structure
for the purposes of declaring a pointer to this opaque
structure.

Any ideas how to get rid of this warning???

Thanks in advance!
Rick
Nov 14 '05 #1
10 3367
BTW: This is the "icc" (intel compiler) *not*
gcc...

It appears -fms_extensions compiler option is not supported.

FYI

Thanks!
Rick
Nov 14 '05 #2
In message <Xn**********************************@148.87.1.5 3>
Rick Anderson <Ri**************@oracle.com> wrote:
I am receiving the following compilation error on LINUX
(but not Solaris, HPUX, WIN32, etc):

compiling osr.c
LBFO.h(369): warning #64: declaration does not declare anything
extern struct foobar;
^

This is apparently a forward reference to a data structure
for the purposes of declaring a pointer to this opaque
structure.

Any ideas how to get rid of this warning???


Remove the "extern". It's meaningless unless you're actually declaring an
object, which you're not. You're merely naming a structure type.

--
Kevin Bracey, Principal Software Engineer
Tematic Ltd Tel: +44 (0) 1223 503464
182-190 Newmarket Road Fax: +44 (0) 1728 727430
Cambridge, CB5 8HE, United Kingdom WWW: http://www.tematic.com/
Nov 14 '05 #3
Rick Anderson wrote:
All,

I am receiving the following compilation error on LINUX
(but not Solaris, HPUX, WIN32, etc):

compiling osr.c
LBFO.h(369): warning #64: declaration does not declare anything
extern struct foobar;
^
extern struct foobar baz;

would make sense.

struct foobar;

can make sense.
"extern" goes with objects, not with types.

This is apparently a forward reference to a data structure
for the purposes of declaring a pointer to this opaque
structure.
Is it?

If it is really necessary to get something opaque,
use void *:

typedef void * FooBarHandle;

The user gets only the handle and even a look at the
typedef does not tell how and where information is stored.
If the user can be trusted to not circumvent your access
macros and functions (and your data structures are not
top secret), the header file giving the type definition
for "struct foobar" should be included.
Any ideas how to get rid of this warning???


Heal the code.
Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
Nov 14 '05 #4
In message <39*************@individual.net>
Michael Mair <Mi**********@invalid.invalid> wrote:
If it is really necessary to get something opaque,
use void *:

typedef void * FooBarHandle;

The user gets only the handle and even a look at the
typedef does not tell how and where information is stored.
If the user can be trusted to not circumvent your access
macros and functions (and your data structures are not
top secret), the header file giving the type definition
for "struct foobar" should be included.


I beg to differ. I'd prefer

typedef struct foobar *FooBarHandle;

leaving the contents of struct foobar opaque. That gives you a bit more type
safety - someone can't accidentally give you a BarHandle instead of a
FooBarHandle.

--
Kevin Bracey, Principal Software Engineer
Tematic Ltd Tel: +44 (0) 1223 503464
182-190 Newmarket Road Fax: +44 (0) 1728 727430
Cambridge, CB5 8HE, United Kingdom WWW: http://www.tematic.com/
Nov 14 '05 #5
Kevin Bracey wrote:
In message <39*************@individual.net>
Michael Mair <Mi**********@invalid.invalid> wrote:

If it is really necessary to get something opaque,
use void *:

typedef void * FooBarHandle;

The user gets only the handle and even a look at the
typedef does not tell how and where information is stored.
If the user can be trusted to not circumvent your access
macros and functions (and your data structures are not
top secret), the header file giving the type definition
for "struct foobar" should be included.

I beg to differ. I'd prefer

typedef struct foobar *FooBarHandle;

leaving the contents of struct foobar opaque. That gives you a bit more type
safety - someone can't accidentally give you a BarHandle instead of a
FooBarHandle.


You are right, at least for the application at hand.

I was thinking of completely opaque information where you do not
even want the people to know what kind of type may be underlying,
i.e. if the type in question is an array, structure or whatever
-- in this case, one obviously does not want type safety.
Cheers
Michael
--
E-Mail: Mine is an /at/ gmx /dot/ de address.
Nov 14 '05 #6
Kevin Bracey wrote:
Michael Mair <Mi**********@invalid.invalid> wrote:
If it is really necessary to get something opaque,
use void *:

typedef void * FooBarHandle;

The user gets only the handle and even a look at the
typedef does not tell how and where information is stored.
If the user can be trusted to not circumvent your access
macros and functions (and your data structures are not
top secret), the header file giving the type definition
for "struct foobar" should be included.


I beg to differ. I'd prefer

typedef struct foobar *FooBarHandle;

leaving the contents of struct foobar opaque. That gives you a
bit more type safety - someone can't accidentally give you a
BarHandle instead of a FooBarHandle.


Exactly what I was mulling how to express, when I decided to look
onwards and see what others had said about it. void* allows you to
receive and pass pointers of unknown types and purpose onward
freely, but this is not such a case.

--
Chuck F (cb********@yahoo.com) (cb********@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!
Nov 14 '05 #7
Kevin Bracey wrote:

I beg to differ. I'd prefer

typedef struct foobar *FooBarHandle;

leaving the contents of struct foobar opaque. That gives you a bit more type
safety - someone can't accidentally give you a BarHandle instead of a
FooBarHandle.


Definitely better than a void *, but really not necessary. As long as

struct foobar;

is declared, pointers to struct foobar can be freely passed around, but
not dereferenced.

--
================================================== ======================
Ian Pilcher i.*******@comcast.net
================================================== ======================
Nov 14 '05 #8
Ian Pilcher <i.*******@comcast.net> wrote in
news:QN********************@comcast.com:
Kevin Bracey wrote:
Definitely better than a void *, but really not necessary. As long as

struct foobar;

is declared, pointers to struct foobar can be freely passed around,
but not dereferenced.


That works great - thanks!
Rick
Nov 14 '05 #9
In message <QN********************@comcast.com>
Ian Pilcher <i.*******@comcast.net> wrote:
Kevin Bracey wrote:

I beg to differ. I'd prefer

typedef struct foobar *FooBarHandle;

leaving the contents of struct foobar opaque. That gives you a bit more
type safety - someone can't accidentally give you a BarHandle instead of
a FooBarHandle.


Definitely better than a void *, but really not necessary. As long as

struct foobar;

is declared, pointers to struct foobar can be freely passed around, but
not dereferenced.


Ah, but making it a typedef hides the fact the handle is a struct from the
basic API. One might want (for whatever reason) to change the handle from an
int to a structure or vice-versa.

--
Kevin Bracey, Principal Software Engineer
Tematic Ltd Tel: +44 (0) 1223 503464
182-190 Newmarket Road Fax: +44 (0) 1728 727430
Cambridge, CB5 8HE, United Kingdom WWW: http://www.tematic.com/
Nov 14 '05 #10
In article <ba****************@tematic.com>
Kevin Bracey <ke**********@tematic.com> wrote:
... [using] a typedef hides the fact the handle is a struct from the
basic API. One might want (for whatever reason) to change the handle
from an int to a structure or vice-versa.


Sure -- but then one could just define a struct containing a single
"int".

Always just use "struct"; it is C's way of defining abstract data
types. :-)

I am "only almost kidding" about "always", too. Note that using a
struct to hold a single scalar variable gives you type-safety:

struct temperature { double val; };
struct pressure { double val; };

Now it is impossible to accidentally pass a "temperature" to a
function requiring a "pressure". You can add a typedef if you
really want:

#ifdef USE_TYPEDEFS
typedef struct temperature Temperature;
typedef struct pressure Pressure;
typedef struct counter Counter;
#endif

struct temperature; /* opaque */
struct pressure; /* opaque */
struct counter { int val; }; /* exposed */

If you make the handle an int, you are stuck. If you make it a
typedef and make the typedef an int and someone uses an int, you
are *still* stuck:

/* remove previous typedef and struct */
typedef int Counter;

extern Counter add(Counter previous, int offset);
...
/* bad programmer, using int instead of the typeef-name: */
void f(void) {
int x;
...
x = add(x, 3); /* this code compiles just fine */
...
}

but if you use a struct -- whether opaque or exposed -- even the
bad programmer has to use the name you gave it:

/* put back typedef and struct */

/* bad programmer attempts to use int instead of the typedef-name: */
void f(void) {
int x;
...
x = add(x, 3); /* error: function add() requires a
struct counter and returns a struct counter,
so this code does not compile */
...
}

Of course, if you always use struct, the typedef is unnecessary. Just
think of the word "struct" as meaning "type":

#define type struct

type foo; /* declare type foo to exist */
type bar; /* declare type bar to exist */

static type foo x = FOO_INITIALIZER; /* make x a foo */
extern type bar y; /* declare y as a bar, defined elsewhere */

and you have a language with an obvious user-defined abstract data
type mechanism. Take out the single "#define" and you still have
that language -- it is called "C". :-) (Of course, to get everything
to work right, you need C99 with its compound-literals.)
--
In-Real-Life: Chris Torek, Wind River Systems
Salt Lake City, UT, USA (40°39.22'N, 111°50.29'W) +1 801 277 2603
email: forget about it http://web.torek.net/torek/index.html
Reading email is like searching for food in the garbage, thanks to spammers.
Nov 14 '05 #11

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

3 posts views Thread by Christopher M. Lusardi | last post: by
11 posts views Thread by Daniele Benegiamo | last post: by
10 posts views Thread by Mark A. Gibbs | last post: by
reply views Thread by Lei Jiang | last post: by
4 posts views Thread by kk_oop | last post: by
5 posts views Thread by jchludzinski | last post: by
13 posts views Thread by arnuld | last post: by
reply views Thread by leo001 | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.