summaryrefslogtreecommitdiff
path: root/gmodule
diff options
context:
space:
mode:
authorCST 1999 Shawn T. Amundson <amundson@gtk.org>1999-02-24 06:14:27 +0000
committerShawn Amundson <amundson@src.gnome.org>1999-02-24 06:14:27 +0000
commitb9ef2b41db975061960e2217220668c2a5d563da (patch)
tree4572bda8803c83f916dd367b9a833c63bc493c46 /gmodule
parenta9a2206fc6449cb59416ef17232ef7d026a3baae (diff)
downloadglib-b9ef2b41db975061960e2217220668c2a5d563da.tar.gz
inserted additional note to look for ChangeLog and AUTHORS file for a log
Wed Feb 24 00:08:42 CST 1999 Shawn T. Amundson <amundson@gtk.org> * *.[ch]: inserted additional note to look for ChangeLog and AUTHORS file for a log of modifications.
Diffstat (limited to 'gmodule')
-rw-r--r--gmodule/gmodule-dl.c7
-rw-r--r--gmodule/gmodule-dld.c7
-rw-r--r--gmodule/gmodule-win32.c7
-rw-r--r--gmodule/gmodule.c7
-rw-r--r--gmodule/gmodule.h8
-rw-r--r--gmodule/libgplugin_a.c8
-rw-r--r--gmodule/libgplugin_b.c8
-rw-r--r--gmodule/testgmodule.c8
8 files changed, 60 insertions, 0 deletions
diff --git a/gmodule/gmodule-dl.c b/gmodule/gmodule-dl.c
index 6afc6d587..e8fb3f281 100644
--- a/gmodule/gmodule-dl.c
+++ b/gmodule/gmodule-dl.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GLib Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GLib Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
/*
* MT safe
*/
diff --git a/gmodule/gmodule-dld.c b/gmodule/gmodule-dld.c
index 17d6e010e..e8cf40d0d 100644
--- a/gmodule/gmodule-dld.c
+++ b/gmodule/gmodule-dld.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GLib Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GLib Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
/*
* MT safe
*/
diff --git a/gmodule/gmodule-win32.c b/gmodule/gmodule-win32.c
index c3fc9a90d..623398cfc 100644
--- a/gmodule/gmodule-win32.c
+++ b/gmodule/gmodule-win32.c
@@ -18,6 +18,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GLib Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GLib Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
/*
* MT safe
*/
diff --git a/gmodule/gmodule.c b/gmodule/gmodule.c
index 2a7ea4129..e0ffc7bca 100644
--- a/gmodule/gmodule.c
+++ b/gmodule/gmodule.c
@@ -17,6 +17,13 @@
* Boston, MA 02111-1307, USA.
*/
+/*
+ * Modified by the GLib Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GLib Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
/*
* MT safe
*/
diff --git a/gmodule/gmodule.h b/gmodule/gmodule.h
index 62fd16af6..908575c13 100644
--- a/gmodule/gmodule.h
+++ b/gmodule/gmodule.h
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GLib Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GLib Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#ifndef __GMODULE_H__
#define __GMODULE_H__
diff --git a/gmodule/libgplugin_a.c b/gmodule/libgplugin_a.c
index 99e9e41fe..91b928d0d 100644
--- a/gmodule/libgplugin_a.c
+++ b/gmodule/libgplugin_a.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GLib Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GLib Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <gmodule.h>
#include <stdlib.h>
diff --git a/gmodule/libgplugin_b.c b/gmodule/libgplugin_b.c
index 12e7fcb76..109e04853 100644
--- a/gmodule/libgplugin_b.c
+++ b/gmodule/libgplugin_b.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GLib Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GLib Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#include <gmodule.h>
#if defined (NATIVE_WIN32) && defined (__LCC__)
diff --git a/gmodule/testgmodule.c b/gmodule/testgmodule.c
index ff7b4397e..cb40da129 100644
--- a/gmodule/testgmodule.c
+++ b/gmodule/testgmodule.c
@@ -16,6 +16,14 @@
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
+
+/*
+ * Modified by the GLib Team and others 1997-1999. See the AUTHORS
+ * file for a list of people on the GLib Team. See the ChangeLog
+ * files for a list of changes. These files are distributed with
+ * GLib at ftp://ftp.gtk.org/pub/gtk/.
+ */
+
#undef G_LOG_DOMAIN
#include <gmodule.h>