summaryrefslogtreecommitdiff
path: root/sysdeps/stub/revoke.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/stub/revoke.c')
-rw-r--r--sysdeps/stub/revoke.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/stub/revoke.c b/sysdeps/stub/revoke.c
index 295dc2bb5e..94107ef89a 100644
--- a/sysdeps/stub/revoke.c
+++ b/sysdeps/stub/revoke.c
@@ -1,5 +1,5 @@
/* Revoke the access of all descriptors currently open on a file.
-Copyright (C) 1995 Free Software Foundation, Inc.
+Copyright (C) 1995, 1996 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -24,7 +24,7 @@ int
revoke (file)
const char *file;
{
- errno = ENOSYS;
+ __set_errno (ENOSYS);
return -1;
}
stub_warning (revoke)