--- ray/src/px/pmap.h 1995/10/11 10:39:28 2.1 +++ ray/src/px/pmap.h 2003/07/14 22:24:00 2.3 @@ -1,8 +1,12 @@ -/* Copyright (c) 1995 Regents of the University of California */ +/* RCSid: $Id: pmap.h,v 2.3 2003/07/14 22:24:00 schorsch Exp $ */ +/* Pmap return codes */ +#ifndef _RAD_PMAP_H_ +#define _RAD_PMAP_H_ -/* SCCSid "$SunId$ LBL" */ +#ifdef __cplusplus +extern "C" { +#endif -/* Pmap return codes */ #define PMAP_BAD -1 #define PMAP_LINEAR 0 #define PMAP_PERSP 1 @@ -11,3 +15,9 @@ * |c d| */ #define DET2(a,b, c,d) ((a)*(d) - (b)*(c)) + +#ifdef __cplusplus +} +#endif +#endif /* _RAD_PMAP_H_ */ +