Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Jan 1999 16:29:34 +0000
From:      nsmart@kira.team400.ie
To:        Ruslan Ermilov <ru@ucb.crimea.ua>
Cc:        Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>, FreeBSD Hackers <hackers@FreeBSD.ORG>
Subject:   Re: #define question
Message-ID:  <36AF3EEE.D9B6C3C0@kira.team400.ie>
References:  <XFMail.990127161951.asmodai@wxs.nl> <19990127173729.A19941@ucb.crimea.ua>

next in thread | previous in thread | raw e-mail | index | archive | help

> Try to `cpp' this chunk:
> 
> #ifdef __FreeBSD__
> #warning "You're on FreeBSD"
> #endif

This program is hopelessly buggy, try this version:

#ifndef __FreeBSD__
#warning "You're not on FreeBSD!"
#endif

Regards,


Niall

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-hackers" in the body of the message



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?36AF3EEE.D9B6C3C0>