Skip to content

Commit

Permalink
Add license clause.
Browse files Browse the repository at this point in the history
  • Loading branch information
stassats committed May 20, 2010
1 parent b7d22a4 commit 0d17c12
Show file tree
Hide file tree
Showing 8 changed files with 32 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ccl.lisp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
;;; -*- Mode: Lisp -*-

;;; This software is in the public domain and is
;;; provided with absolutely no warranty.

(in-package :swap-bytes)

Expand Down
2 changes: 2 additions & 0 deletions package.lisp
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
;;; -*- Mode: Lisp -*-

(defpackage :swap-bytes
(:use #:cl
#+(and sbcl (or x86 x86-64))
Expand Down
5 changes: 5 additions & 0 deletions portable.lisp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
;;; -*- Mode: Lisp -*-

;;; This software is in the public domain and is
;;; provided with absolutely no warranty.

(in-package :swap-bytes)

#-(and sbcl (or x86 x86-64))
Expand Down
4 changes: 4 additions & 0 deletions sbcl-defknowns.lisp
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
;;; -*- Mode: Lisp -*-

;;; This software is in the public domain and is
;;; provided with absolutely no warranty.

(in-package #:swap-bytes)

Expand Down
5 changes: 5 additions & 0 deletions sbcl-vops.lisp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
;;; -*- Mode: Lisp -*-

;;; This software is in the public domain and is
;;; provided with absolutely no warranty.

(in-package :swap-bytes)

#+(or x86 x86-64)
Expand Down
5 changes: 5 additions & 0 deletions sbcl.lisp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
;;; -*- Mode: Lisp -*-

;;; This software is in the public domain and is
;;; provided with absolutely no warranty.

(in-package :swap-bytes)

#+(or x86 x86-64)
Expand Down
2 changes: 2 additions & 0 deletions swap-bytes.asd
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
;;; -*- Mode: Lisp -*-

(defsystem :swap-bytes
:depends-on (:trivial-features)
:serial t
Expand Down
5 changes: 5 additions & 0 deletions test.lisp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
;;; -*- Mode: Lisp -*-

;;; This software is in the public domain and is
;;; provided with absolutely no warranty.

(setf *print-array* nil)

(declaim (inline swap-bytes-16-portable))
Expand Down

0 comments on commit 0d17c12

Please sign in to comment.