]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Mark second parameter as const.
authorUlrich Drepper <drepper@redhat.com>
Fri, 17 Mar 2000 03:25:57 +0000 (03:25 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 17 Mar 2000 03:25:57 +0000 (03:25 +0000)
sysdeps/generic/msgsnd.c
sysdeps/unix/sysv/linux/msgsnd.c

index 993895290b7adb1c22cc458612044b59107176ac..a2d853c3040402147a17d5d4bbe698e1b4d3d78d 100644 (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;
 {
index c279b2e52e403618fc3aa3110bd03c539da421c1..63b253fcd9bd9820a0b337169c8e654800517e37 100644 (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;
 {