From 127ec750f7a714012d9968cef0d07eec44e2e725 Mon Sep 17 00:00:00 2001 From: Mikael Djurfeldt Date: Sun, 9 Jan 2000 16:09:15 +0000 Subject: [PATCH] * posix.c (scm_sync): Return SCM_UNSPECIFIED. --- libguile/posix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libguile/posix.c b/libguile/posix.c index 4ceea9e5d..9b7abe591 100644 --- a/libguile/posix.c +++ b/libguile/posix.c @@ -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 * 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 { sync(); + return SCM_UNSPECIFIED; } #undef FUNC_NAME #endif /* HAVE_SYNC */