diff options
author | Gary Houston <ghouston@arglist.com> | 1997-01-31 04:36:24 +0000 |
---|---|---|
committer | Gary Houston <ghouston@arglist.com> | 1997-01-31 04:36:24 +0000 |
commit | 063e05bed8618b7a6c68a6350ca2ad6be4a5192e (patch) | |
tree | 6c85952d0f299fa63742135085715aef125bb24c /libguile/posix.c | |
parent | ad310508112bad654b73784c8e451691fcf96188 (diff) | |
download | guile-063e05bed8618b7a6c68a6350ca2ad6be4a5192e.tar.gz |
* ioext.c, ioext.h: remove obsolete _sys_ from 9 procedure names.
* * posix.c (scm_fork): Scheme name changed from fork to primitive-fork,
to avoid clash with various scsh forks.
Diffstat (limited to 'libguile/posix.c')
-rw-r--r-- | libguile/posix.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libguile/posix.c b/libguile/posix.c index 2d52690d0..42657faf5 100644 --- a/libguile/posix.c +++ b/libguile/posix.c @@ -750,8 +750,7 @@ scm_execlp (args) return SCM_BOOL_F; } -/* Flushing streams etc., is not done here. */ -SCM_PROC (s_fork, "fork", 0, 0, 0, scm_fork); +SCM_PROC (s_fork, "primitive-fork", 0, 0, 0, scm_fork); SCM scm_fork() |