1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00
1999-02-02  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/reboot.c: Make sure first parameter is
	correctly passed to the kernel even on 64bit platforms.
	Patch by Bruce Elliott <bde@nwlink.com>.

	* localedata/locales/it_CH: New file.
	Contributed by Giacomo Amabile Catenazzi <gcatenaz@g26.ethz.ch>.
This commit is contained in:
Ulrich Drepper
1999-02-02 09:26:53 +00:00
parent 5b3ce86c1c
commit b1418d8f39
8 changed files with 184 additions and 60 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
/* Copyright (C) 1996, 1997, 1998, 1999 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
@ -28,5 +28,5 @@ extern int __syscall_reboot (int magic, int magic_too, int flag);
int
reboot (int howto)
{
return INLINE_SYSCALL (reboot, 3, 0xfee1dead, 672274793, howto);
return INLINE_SYSCALL (reboot, 3, (int) 0xfee1dead, 672274793, howto);
}