--- ray/src/hd/sm_list.h 1999/01/10 10:27:45 3.5 +++ ray/src/hd/sm_list.h 2003/07/14 22:24:00 3.7 @@ -1,12 +1,15 @@ -/* Copyright (c) 1998 Silicon Graphics, Inc. */ - -/* SCCSid "$SunId$ SGI" */ - +/* RCSid: $Id: sm_list.h,v 3.7 2003/07/14 22:24:00 schorsch Exp $ */ /* * list.h * Linked list data structure and routines */ +#ifndef _RAD_SM_LIST_H_ +#define _RAD_SM_LIST_H_ +#ifdef __cplusplus +extern "C" { +#endif + #ifndef TRUE #define TRUE 1 #define FALSE 0 @@ -42,5 +45,9 @@ int remove_from_list(); LIST *add_data(); +#ifdef __cplusplus +} +#endif +#endif /* _RAD_SM_LIST_H_ */