summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2022-12-23 11:42:57 +0100
committerLudovic Courtès <ludo@gnu.org>2022-12-23 11:42:57 +0100
commit7073b5f67686f175d44bac0549c3e2e6935f7463 (patch)
tree4396b60319c3bf95c7ac06d8a5f4709b9bdbcf13
parentd4ece4b74d9920bd07e5bfe875ce85abe623f98e (diff)
fixup! Make system* and piped-process internally use spawn.wip-posix-spawn
Keep 'scm_spawn_process' internal for now.
-rw-r--r--libguile/posix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/posix.h b/libguile/posix.h
index c2703f9ab..fb68b1449 100644
--- a/libguile/posix.h
+++ b/libguile/posix.h
@@ -69,8 +69,8 @@ SCM_API SCM scm_tmpnam (void);
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_spawn_process (SCM prog, SCM args,
- SCM in, SCM out, SCM err);
+SCM_INTERNAL SCM scm_spawn_process (SCM prog, SCM args,
+ SCM in, SCM out, SCM err);
SCM_API SCM scm_system_star (SCM cmds);
SCM_API SCM scm_utime (SCM object, SCM actime, SCM modtime,
SCM actimens, SCM modtimens, SCM flags);