Mark second parameter as const.

This commit is contained in:
Ulrich Drepper 2000-03-17 03:25:57 +00:00
parent 12e2118743
commit 800be20593
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
/* Copyright (C) 1995, 1996, 1997, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
@ -29,7 +29,7 @@
int
msgsnd (msqid, msgp, msgsz, msgflg)
int msqid;
void *msgp;
const void *msgp;
size_t msgsz;
int msgflg;
{

View File

@ -1,4 +1,4 @@
/* Copyright (C) 1995, 1997, 1998 Free Software Foundation, Inc.
/* Copyright (C) 1995, 1997, 1998, 2000 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
@ -26,7 +26,7 @@
int
msgsnd (msqid, msgp, msgsz, msgflg)
int msqid;
void *msgp;
const void *msgp;
size_t msgsz;
int msgflg;
{