1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-01 10:06:57 +03:00

De-warning a few stubs.

This commit is contained in:
Roland McGrath
2014-12-04 12:31:38 -08:00
parent 84dbedb608
commit 4bee4cd959
5 changed files with 48 additions and 29 deletions

View File

@ -18,15 +18,16 @@
#include <errno.h>
#include <unistd.h>
#include <sys/reboot.h>
#include <libc-internal.h>
/* Reboot the system. */
int
reboot (howto)
int howto;
reboot (int howto)
{
ignore_value (howto);
__set_errno (ENOSYS);
return -1;
}
stub_warning (reboot)