mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-20 17:51:16 +00:00
Fix type of second parameter.
This commit is contained in:
parent
b90be06542
commit
37b22a8dd3
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1994, 1996, 1997, 2000 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
|
||||
@ -29,7 +29,7 @@ extern int __sysmp __P ((int, ...));
|
||||
int
|
||||
getpriority (which, who)
|
||||
enum __priority_which which;
|
||||
int who;
|
||||
id_t who;
|
||||
{
|
||||
switch (which)
|
||||
{
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1994, 1996, 1997, 2000 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
|
||||
@ -23,7 +23,7 @@
|
||||
int
|
||||
setpriority (which, who, prio)
|
||||
enum __priority_which which;
|
||||
int who;
|
||||
id_t who;
|
||||
int prio;
|
||||
{
|
||||
switch (which)
|
||||
|
Loading…
Reference in New Issue
Block a user