#import

(thing) by everyone Mon Nov 20 2000 at 20:52:42
An Objective C preprocessor directive nearly identical to #include, except that it checks to see if the file has already been included.

gcc supports it, but doesn't like it, and will bark a rather large warning to stderr if you use it. Instead, they encourage you to do this in the header:

#ifndef __SOMEFILE_H__
#define __SOMEFILE_H__
...
#endif

-Wno-import gets rid of this warning.
Y'know, if you log in, you can write something here, or contact authors directly on the site. Create a New User if you don't already have an account.