diff --git a/sysdeps/generic/msgsnd.c b/sysdeps/generic/msgsnd.c index 993895290b..a2d853c304 100644 --- a/sysdeps/generic/msgsnd.c +++ b/sysdeps/generic/msgsnd.c @@ -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 , August 1995. @@ -29,7 +29,7 @@ int msgsnd (msqid, msgp, msgsz, msgflg) int msqid; - void *msgp; + const void *msgp; size_t msgsz; int msgflg; { diff --git a/sysdeps/unix/sysv/linux/msgsnd.c b/sysdeps/unix/sysv/linux/msgsnd.c index c279b2e52e..63b253fcd9 100644 --- a/sysdeps/unix/sysv/linux/msgsnd.c +++ b/sysdeps/unix/sysv/linux/msgsnd.c @@ -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 , August 1995. @@ -26,7 +26,7 @@ int msgsnd (msqid, msgp, msgsz, msgflg) int msqid; - void *msgp; + const void *msgp; size_t msgsz; int msgflg; {