1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-11 06:20:23 +02:00

* posix.c (scm_sync): Return SCM_UNSPECIFIED.

This commit is contained in:
Mikael Djurfeldt 2000-01-09 16:09:15 +00:00
parent f25f761dac
commit 127ec750f7

View file

@ -1,4 +1,4 @@
/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc. /* Copyright (C) 1995-2000 Free Software Foundation, Inc.
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -1286,6 +1286,7 @@ The return value is unspecified.")
#define FUNC_NAME s_scm_sync #define FUNC_NAME s_scm_sync
{ {
sync(); sync();
return SCM_UNSPECIFIED;
} }
#undef FUNC_NAME #undef FUNC_NAME
#endif /* HAVE_SYNC */ #endif /* HAVE_SYNC */