From d0e533c0caa4ba611b8983ab2f9b85c749646f17 Mon Sep 17 00:00:00 2001 From: Stelian Ionescu Date: Sat, 24 Jan 2009 22:35:24 +0100 Subject: [PATCH] Add largefile version of mkstemp() too. --- syscalls/ffi-functions-unix.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syscalls/ffi-functions-unix.lisp b/syscalls/ffi-functions-unix.lisp index 7c2a779..15b452c 100644 --- a/syscalls/ffi-functions-unix.lisp +++ b/syscalls/ffi-functions-unix.lisp @@ -296,7 +296,7 @@ to the argument OFFSET according to the directive WHENCE." "Schedule a file's buffers to be written to disk." (fd :int)) -(defsyscall (%%sys-mkstemp "mkstemp") :int +(defsyscall (%%sys-mkstemp (#+linux "mkstemp64" "mkstemp")) :int (template filename-designator)) (defentrypoint %sys-mkstemp (&optional (template "")) -- 2.11.4.GIT