--- ray/src/common/object.h 2003/06/20 00:25:49 2.14 +++ ray/src/common/object.h 2003/07/17 09:21:29 2.17 @@ -1,4 +1,4 @@ -/* RCSid $Id: object.h,v 2.14 2003/06/20 00:25:49 greg Exp $ */ +/* RCSid $Id: object.h,v 2.17 2003/07/17 09:21:29 schorsch Exp $ */ /* * object.h - header file for routines using objects and object sets. * @@ -10,8 +10,6 @@ extern "C" { #endif -#include "copyright.h" - #ifndef OCTREE #define OCTREE int #endif @@ -27,7 +25,7 @@ typedef struct { short nsargs; /* # of string arguments */ short nfargs; /* # of real arguments */ char **sarg; /* string arguments */ - FLOAT *farg; /* real arguments */ + RREAL *farg; /* real arguments */ #ifdef IARGS short niargs; /* # of integer arguments */ long *iarg; /* integer arguments */ @@ -117,7 +115,7 @@ extern void freefargs(FUNARGS *fa); /* defined in readobj.c */ extern void readobj(char *inpspec); extern void getobject(char *name, FILE *fp); -extern OBJECT newobject(); +extern OBJECT newobject(void); extern void freeobjects(int firstobj, int nobjs); /* defined in free_os.c */ extern int free_os(OBJREC *op);