Only include strings.h where it is actually needed.
[bpt/guile.git] / libguile / objprop.h
index 86837ed..f04c140 100644 (file)
@@ -16,7 +16,8 @@
  * 
  * You should have received a copy of the GNU General Public License
  * along with this software; see the file COPYING.  If not, write to
- * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
+ * the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
+ * Boston, MA 02111-1307 USA
  *
  * As a special exception, the Free Software Foundation gives permission
  * for additional uses of the text contained in its release of GUILE.
  *
  * If you write modifications of your own for GUILE, it is your choice
  * whether to permit this exception to apply to your modifications.
- * If you do not wish that, delete this exception notice.  
- */
+ * If you do not wish that, delete this exception notice.  */
 \f
 
 #include <stdio.h>
-#include <libguile/__scm.h>
+#include "libguile/__scm.h"
 
 \f
 
 
 
 \f
-#ifdef __STDC__
+
 extern SCM scm_object_properties (SCM obj);
 extern SCM scm_set_object_properties_x (SCM obj, SCM plist);
 extern SCM scm_object_property (SCM obj, SCM key);
 extern SCM scm_set_object_property_x (SCM obj, SCM key, SCM val);
 extern void scm_init_objprop (void);
 
-#else /* STDC */
-extern SCM scm_object_properties ();
-extern SCM scm_set_object_properties_x ();
-extern SCM scm_object_property ();
-extern SCM scm_set_object_property_x ();
-extern void scm_init_objprop ();
-
-#endif /* STDC */
-
-
-
 #endif  /* OBJPROPH */