]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - posix/posix_madvise.c
Prefer https to http for gnu.org and fsf.org URLs
[thirdparty/glibc.git] / posix / posix_madvise.c
index 436676aa736a005eccc579640cf27b0e73283b93..135f0907bc3c8896a37dcb122969b5b1b0547cb2 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994-2015 Free Software Foundation, Inc.
+/* Copyright (C) 1994-2019 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
@@ -13,7 +13,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <sys/types.h>
 #include <sys/mman.h>
@@ -23,7 +23,7 @@
    for the region starting at ADDR and extending LEN bytes.  */
 
 int
-posix_madvise (__ptr_t addr, size_t len, int advice)
+posix_madvise (void *addr, size_t len, int advice)
 {
   return ENOSYS;
 }