summaryrefslogtreecommitdiff
path: root/libguile/posix.h
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2010-02-12 16:01:16 +0100
committerAndy Wingo <wingo@pobox.com>2010-06-15 23:06:00 +0200
commitcd53bd3668d7a8e36a53de3f12beaf9853cfb911 (patch)
tree38975e7d8ecf3dd40b00171cac4edeb8f011c78e /libguile/posix.h
parent1772145c0222e4826e5113c14ee96fd95b263420 (diff)
downloadguile-cd53bd3668d7a8e36a53de3f12beaf9853cfb911.tar.gz
Add tmpfile(3) to libguile.
* libguile/posix.c (scm_tmpfile): New primitive. * libguile/posix.h (scm_tmpfile): New func decl. * doc/ref/posix.texi (File System): Document `tmpfile'.
Diffstat (limited to 'libguile/posix.h')
-rw-r--r--libguile/posix.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libguile/posix.h b/libguile/posix.h
index f7a5bb3a0..ac774d33d 100644
--- a/libguile/posix.h
+++ b/libguile/posix.h
@@ -68,6 +68,7 @@ SCM_API SCM scm_uname (void);
SCM_API SCM scm_environ (SCM env);
SCM_API SCM scm_tmpnam (void);
SCM_API SCM scm_mkstemp (SCM tmpl);
+SCM_API SCM scm_tmpfile (void);
SCM_API SCM scm_open_pipe (SCM pipestr, SCM modes);
SCM_API SCM scm_close_pipe (SCM port);
SCM_API SCM scm_utime (SCM pathname, SCM actime, SCM modtime,