--- ray/src/common/wordfile.c 1993/06/18 09:00:22 2.7 +++ ray/src/common/wordfile.c 2003/06/08 12:03:09 2.11 @@ -1,17 +1,25 @@ -/* Copyright (c) 1992 Regents of the University of California */ - #ifndef lint -static char SCCSid[] = "$SunId$ LBL"; +static const char RCSid[] = "$Id: wordfile.c,v 2.11 2003/06/08 12:03:09 schorsch Exp $"; #endif - /* * Load whitespace separated words from a file into an array. * Assume the passed pointer array is big enough to hold them all. + * + * External symbols declared in standard.h */ +#include "copyright.h" + #include +#include +#include +#include +#include +#include -#define NULL 0 +#include "standard.h" +#include "platform.h" + #define MAXFLEN 8192 /* file must be smaller than this */