diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-17 10:51:53 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2024-02-24 10:55:43 -0800 |
commit | 7a9fa61950200eb13600cdb57830e58a53bf78fa (patch) | |
tree | 2bba1bd11b0bb286dfd308775521d633058221d4 /lisp/time.c | |
parent | 981dfdb23272bc02977c5bb9bc18d0d3fb618fa3 (diff) |
unifdef __UNIXOS2__
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'lisp/time.c')
-rw-r--r-- | lisp/time.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp/time.c b/lisp/time.c index 763ca58..cb7ef0c 100644 --- a/lisp/time.c +++ b/lisp/time.c @@ -41,7 +41,6 @@ Lisp_Time(LispBuiltin *builtin) time form */ { -#ifndef __UNIXOS2__ struct itimerval real, virt, prof; unsigned long count; long sec, usec; @@ -136,8 +135,4 @@ Lisp_Time(LispBuiltin *builtin) lisp__data.gc.timebits = 0; return (result); -#else - LispMessage("\"Lisp_Time\" not implemented under OS/2"); - return (NIL); -#endif } |