Re: Can't find mysql.h
Re: Can't find mysql.h
- Subject: Re: Can't find mysql.h
- From: Finlay Dobbie <email@hidden>
- Date: Tue, 26 Feb 2002 19:40:39 +0000
On Tuesday, February 26, 2002, at 09:58 AM, Andy Lee wrote:
I'd add the suggestion that you use #import rather than #include.
#import ensures the compiler (preprocessor) will only try to include
the file once. Not that it's likely you'd have a problem with
redundant includes in this case, but you should use #import for
consistency and "just in case."
If it's a C header, it most likely has something similar to
#ifndef MYSQL_H
#define MYSQL_H
... header declares etc etc
#endif /* MYSQL_H */
Anyway, shouldn't be important. :-)
-- Finlay
_______________________________________________
cocoa-dev mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/cocoa-dev
Do not post admin requests to the list. They will be ignored.