git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@74 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
spog 2006-05-29 16:23:39 +00:00
parent 665309b15e
commit ecd25e066c
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#if !defined(INCLUDED_BYTESTREAMUTILS_H)
#define INCLUDED_BYTESTREAMUTILS_H
#if defined(__GCC__)
#if defined(__GNUC__)
#define _ISOC9X_SOURCE 1
#define _ISOC99_SOURCE 1

View file

@ -49,7 +49,7 @@ inline int lrint(double f)
return static_cast<int>(f + 0.5);
}
#elif defined(__GCC__)
#elif defined(__GNUC__)
// lrint is part of ISO C99
#define _ISOC9X_SOURCE 1