mirror of
https://github.com/ashinn/chibi-scheme.git
synced 2025-05-18 21:29:19 +02:00
(chibi filesystem): conditionalize chown to fix Windows build
This commit is contained in:
parent
8ae99cff92
commit
f4526f7fc8
1 changed files with 3 additions and 1 deletions
|
@ -269,7 +269,9 @@
|
|||
|
||||
;;> Sets the file owner and group as in chown.
|
||||
|
||||
(define-c int chown (string uid_t gid_t))
|
||||
(cond-expand
|
||||
((not windows)
|
||||
(define-c int chown (string uid_t gid_t))))
|
||||
|
||||
;;> Returns \scheme{#t} if the given port of file descriptor
|
||||
;;> if backed by a TTY object, and \scheme{#f} otherwise.
|
||||
|
|
Loading…
Add table
Reference in a new issue