--- ray/src/common/paths.h 2003/06/05 19:29:34 2.11 +++ ray/src/common/paths.h 2003/06/06 16:38:47 2.12 @@ -1,7 +1,12 @@ -/* RCSid $Id: paths.h,v 2.11 2003/06/05 19:29:34 schorsch Exp $ */ +/* RCSid $Id: paths.h,v 2.12 2003/06/06 16:38:47 schorsch Exp $ */ /* * Definitions for paths on different machines */ +#ifndef _RAD_PATHS_H_ +#define _RAD_PATHS_H_ +#ifdef __cplusplus +extern "C" { +#endif #include "copyright.h" @@ -65,3 +70,10 @@ extern char *getwd(); extern char *getcwd(); #define getwd(p) getcwd(p, sizeof(p)) #endif + + +#ifdef __cplusplus +} +#endif +#endif /* _RAD_PATHS_H_ */ +