about summary refs log tree commit diff stats
path: root/uuid.lsp
diff options
context:
space:
mode:
authorDarren Bane <dbane@tilde.institute>2020-05-26 21:22:02 +0100
committerDarren Bane <dbane@tilde.institute>2020-05-26 21:22:02 +0100
commite86f1d02e4c79f6083fd35c851b91f80f9d64cea (patch)
treeaa43e604fc22b8bb1c8c25df2f8421724a7f9773 /uuid.lsp
parent4d40956bf90f368bbb6c864148d9a9c4842199b6 (diff)
downloadlsp-e86f1d02e4c79f6083fd35c851b91f80f9d64cea.tar.gz
Making changes
Diffstat (limited to 'uuid.lsp')
-rwxr-xr-xuuid.lsp6
1 files changed, 5 insertions, 1 deletions
diff --git a/uuid.lsp b/uuid.lsp
index 88e3ebb..9f78fa6 100755
--- a/uuid.lsp
+++ b/uuid.lsp
@@ -1,6 +1,10 @@
 #!/home/dbane/openlisp-10.9.0/uxlisp -shell
+
+;;; UUID V1 from https://tools.ietf.org/html/rfc4122#page-18, ported to Lisp.
+
+(require "sysdep")
 (defpackage #:uuid
-  (:use #:openlisp)
+  (:use #:openlisp #:sysdep)
   (:export
     #:main))
 (in-package #:uuid)