summaryrefslogtreecommitdiff
path: root/libguile/smob.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/smob.c')
-rw-r--r--libguile/smob.c65
1 files changed, 31 insertions, 34 deletions
diff --git a/libguile/smob.c b/libguile/smob.c
index 43ea613de..8e4da9adb 100644
--- a/libguile/smob.c
+++ b/libguile/smob.c
@@ -1,42 +1,45 @@
-/* Copyright (C) 1995, 1996, 1998, 1999, 2000, 2001, 2003, 2004, 2006,
- * 2009, 2010, 2011, 2012, 2013, 2015 Free Software Foundation, Inc.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public License
- * as published by the Free Software Foundation; either version 3 of
- * the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- * 02110-1301 USA
- */
+/* Copyright 1995-1996,1998-2001,2003-2004,2006,2009-2013,2015,2018
+ Free Software Foundation, Inc.
+
+ This file is part of Guile.
+
+ Guile is free software: you can redistribute it and/or modify it
+ under the terms of the GNU Lesser General Public License as published
+ by the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ Guile is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
+ License for more details.
+
+ You should have received a copy of the GNU Lesser General Public
+ License along with Guile. If not, see
+ <https://www.gnu.org/licenses/>. */
+
#ifdef HAVE_CONFIG_H
-# include <config.h>
+# include <config.h>
#endif
+#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
-#include <errno.h>
-#include "libguile/_scm.h"
+#include "async.h"
+#include "bdw-gc.h"
+#include "finalizers.h"
+#include "goops.h"
+#include "gsubr.h"
+#include "instructions.h"
+#include "numbers.h"
+#include "ports.h"
+#include "programs.h"
-#include "libguile/async.h"
-#include "libguile/goops.h"
-#include "libguile/instructions.h"
-#include "libguile/programs.h"
+#include "smob.h"
-#include "libguile/smob.h"
-
-#include "libguile/bdw-gc.h"
#include <gc/gc_mark.h>
@@ -511,9 +514,3 @@ scm_smob_prehistory ()
finalized_smob_tc16 = scm_make_smob_type ("finalized smob", 0);
if (SCM_TC2SMOBNUM (finalized_smob_tc16) != 0) abort ();
}
-
-/*
- Local Variables:
- c-file-style: "gnu"
- End:
-*/