--- ray/src/rt/oocbuild.c 2016/05/17 17:39:47 2.3 +++ ray/src/rt/oocbuild.c 2017/08/14 21:12:10 2.4 @@ -1,3 +1,8 @@ +#ifndef lint +static const char RCSid[] = "$Id: oocbuild.c,v 2.4 2017/08/14 21:12:10 rschregle Exp $"; +#endif + + /* ======================================================================= Routines for building out-of-core octree data structure @@ -8,13 +13,16 @@ Roland Schregle (roland.schregle@{hslu.ch, gmail.com}) (c) Lucerne University of Applied Sciences and Arts, - supported by the Swiss National Science Foundation (SNSF, #147053) + supported by the Swiss National Science Foundation (SNSF, #147053) ======================================================================= - $Id: oocbuild.c,v 2.3 2016/05/17 17:39:47 rschregle Exp $ + $Id: oocbuild.c,v 2.4 2017/08/14 21:12:10 rschregle Exp $ */ +#if !defined(_WIN32) && !defined(_WIN64) || defined(PMAP_OOC) +/* No Windoze support for now */ + #include "oococt.h" #include "oocsort.h" #include @@ -347,3 +355,5 @@ OOC_Octree *OOC_Build (OOC_Octree *oct, unsigned leafM return oct; } + +#endif /* NIX / PMAP_OOC */