aboutsummaryrefslogtreecommitdiff
path: root/module/datetime/timespec.scm
diff options
context:
space:
mode:
Diffstat (limited to 'module/datetime/timespec.scm')
-rw-r--r--module/datetime/timespec.scm8
1 files changed, 4 insertions, 4 deletions
diff --git a/module/datetime/timespec.scm b/module/datetime/timespec.scm
index 9b236e2d..712ff327 100644
--- a/module/datetime/timespec.scm
+++ b/module/datetime/timespec.scm
@@ -4,8 +4,10 @@
;;; Code:
(define-module (datetime timespec)
- :use-module (hnh util)
- :use-module (hnh util exceptions)
+ :export (make-timespec
+ timespec? timespec-time timespec-sign timespec-type)
+ :use-module ((hnh util) :select (set define*-public unless let*))
+ :use-module ((hnh util exceptions) :select (warning))
:use-module (datetime)
:use-module (srfi srfi-1)
:use-module (srfi srfi-9 gnu)
@@ -26,8 +28,6 @@
;; u, g, z - Universal time
(type timespec-type)) ; char
-(export make-timespec timespec? timespec-time timespec-sign timespec-type)
-
(define-public (timespec-zero)
(make-timespec (time) '+ #\w))