aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorscgilardi <scgilardi@gmail.com>2008-04-03 16:42:52 +0000
committerscgilardi <scgilardi@gmail.com>2008-04-03 16:42:52 +0000
commit430b927cb3ca2e30fdb6a6652db8fbb4f05da5a2 (patch)
tree1ca5e436b44bf0fbc0c6e133af8f1e8db71e5268
parentdca7f594bf330197244493d918a8bfc7e44f26dc (diff)
move copyright notices to the top of the file for consistency
-rw-r--r--pkg.clj16
-rw-r--r--sql.clj14
2 files changed, 15 insertions, 15 deletions
diff --git a/pkg.clj b/pkg.clj
index fb4932bc..9504872b 100644
--- a/pkg.clj
+++ b/pkg.clj
@@ -1,3 +1,11 @@
+;; Copyright (c) Stephen C. Gilardi. All rights reserved.
+;; The use and distribution terms for this software are covered by the
+;; Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
+;; which can be found in the file CPL.TXT at the root of this distribution.
+;; By using this software in any fashion, you are agreeing to be bound by
+;; the terms of this license.
+;; You must not remove this notice, or any other, from this software.
+;;
;; pkg.clj
;;
;; Clojure package loading and dependency via require/provide.
@@ -40,14 +48,6 @@
;; 2 April 2008
;;
;; load-resource adapted from Stuart Sierra's public domain require.clj
-;;
-;; Copyright (c) Stephen C. Gilardi. All rights reserved.
-;; The use and distribution terms for this software are covered by the
-;; Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
-;; which can be found in the file CPL.TXT at the root of this distribution.
-;; By using this software in any fashion, you are agreeing to be bound by
-;; the terms of this license.
-;; You must not remove this notice, or any other, from this software.
(clojure/in-ns 'pkg)
(clojure/refer 'clojure)
diff --git a/sql.clj b/sql.clj
index 584fbe3c..862ffbed 100644
--- a/sql.clj
+++ b/sql.clj
@@ -1,10 +1,3 @@
-;; sql.clj
-;;
-;; A Clojure interface to sql databases via jdbc
-;;
-;; scgilardi (gmail)
-;; 2 April 2008
-;;
;; Copyright (c) Stephen C. Gilardi. All rights reserved.
;; The use and distribution terms for this software are covered by the
;; Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
@@ -12,6 +5,13 @@
;; By using this software in any fashion, you are agreeing to be bound by
;; the terms of this license.
;; You must not remove this notice, or any other, from this software.
+;;
+;; sql.clj
+;;
+;; A Clojure interface to sql databases via jdbc
+;;
+;; scgilardi (gmail)
+;; 2 April 2008
(clojure/in-ns 'sql)
(clojure/refer 'clojure)