blob: ef7753987eff1957bfc80240630520692626d621 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/*
* $RCSfile$
*
* Copyright (c) 2006 Sun Microsystems, Inc. All rights reserved.
*
* Use is subject to license terms.
*
* $Revision$
* $Date$
* $State$
*/
#ifndef _j3dsys_h_
#define _j3dsys_h_
// Suppress VS2005 compiler warning
#if defined(WIN32)
#define _CRT_SECURE_NO_DEPRECATE
#define _CRT_NONSTDC_NO_DEPRECATE
#endif
#if defined(LINUX)
#define _GNU_SOURCE 1
#endif
#endif /* _j3dsys_h_ */
|